7
有沒有一種方法可以爲nginx error_pages設置絕對路徑?不是絕對的,如http://
,但絕對如/usr/var/nginx/errors/500.html
。nginx中error_page的絕對路徑?
有沒有一種方法可以爲nginx error_pages設置絕對路徑?不是絕對的,如http://
,但絕對如/usr/var/nginx/errors/500.html
。nginx中error_page的絕對路徑?
當然,你可以,但以間接的方式:
error_page 500 /500.html;
location = /500.html {
root /usr/var/nginx/errors;
allow all;
internal;
}
請注意,這不會裏面'http'塊工作。 – 2015-05-28 02:28:17
@magu [官方文檔](http://nginx.org/en/docs/http/ngx_http_core_module.html#error_page)表示它也可以在'http'上下文中使用。你使用的是什麼版本的nginx? – number5 2015-05-28 04:56:45
'error_page'起作用。 '位置'不。 – 2015-05-30 06:00:04