是否可以为所有服务器定义公共位置?从nginx location文档我看到该位置取决于服务器.我想做这样的事情:
...
http {
error_page 404 /error/404.html;
error_page 500 501 502 503 504 /error/50x.html;
location ^~ /error/ {
internal;
root /var/www/Nginx/errors;
}
server {
...
}
server {
...
}
...
}
我试过设置:
http {
...
root /var/www/Nginx/errors; # also with root /var/www/Nginx
...
}
最佳答案
原文链接:https://www.f2er.com/nginx/434369.html