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'ブロック内では動作しませんのでご注意ください。 –
@magu [official docs](http://nginx.org/en/docs/http/ngx_http_core_module.html#error_page)は、httpコンテキストでも動作すると言います。あなたはどのバージョンのnginxを使用していますか? – number5
'error_page'が動作します。 「場所」はありません。 –