在上游错误

时间:2015-07-09 08:49:31

标签: nginx

我有以下配置:

server {
    listen       80;
    server_name  client.dev;

    location ~ /rest/ {
        proxy_set_header X-Real-IP $remote_addr;
        proxy_set_header X-Forwarded-For $remote_addr;
        proxy_set_header Host $host;
        proxy_pass http://somedomain:8081;
    }
只有在我通过VPN连接时才能访问

http://somedomain:8081,但是当我不能访问时,可以访问其他配置块。当我启动Nginx并且我没有通过VPN连接时,它无法以上游host not found http://somedomain:8081`中的消息because it can't access开头。当我没有通过VPN连接时,有没有办法忽略该错误并正常启动Nginx?

0 个答案:

没有答案