nginx提示502bad gateway

今天给一个网站做了一个本地端口proxy_pass(反代),网站正常浏览,但是根目录的几个文件robots.txt,404.html出现了502 bad gateway。

nginx提示502bad gateway

 

以为是/没加上,但是发现还是依然错误。

 location / {
        proxy_pass http://127.0.0.1:8080;
        proxy_redirect off;
        proxy_set_header Host $host;

后来检测发现是参数问题,修改如下:

  proxy_pass http://127.0.0.1:8080;
        proxy_redirect off;
        proxy_set_header Host $host:$server_port;

 

正文完
 
评论(没有评论)