我正在使用Nginx作为单个机器的反向代理.
我想在后端机器关闭时有一个错误页面.
这是我的配置文件:
server {
listen 80;
access_log /var/log/Nginx/access.log;
root /var/www/Nginx;
error_page 403 404 500 502 503 504 /error.html;
location / {
proxy_pass http://192.168.1.78/;
include /etc/Nginx/proxy.conf;
}
最佳答案
原文链接:https://www.f2er.com/nginx/435099.html