我现在有一个网站www.abc.com是PHP开发的,现在我想让www.abc.com/xxx作为另一个python开发的站点的首页链接,根据网上的教程我将nignx配置修改为:
location /news {
proxy_pass http://127.0.0.1:1022;
proxy_set_header Host $host;
proxy_set_header X-Real-IP $remote_addr;
proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
proxy_set_header X-Forwarded-Proto $scheme;
}
location /art {
proxy_pass http://127.0.0.1:1022;
proxy_set_header Host $host;
proxy_set_header X-Real-IP $remote_addr;
proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
proxy_set_header X-Forwarded-Proto $scheme;
}
location /tag {
proxy_pass http://127.0.0.1:1022;
proxy_set_header Host $host;
proxy_set_header X-Real-IP $remote_addr;
proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
proxy_set_header X-Forwarded-Proto $scheme;
}
一开始开能访问,但是后来不知道设置了反向代理,网站任何网址访问都会下载文件,但是页面都访问不了了。
现在恢复到之前的设置,还是会下载文件,网站彻底访问不了了。
请问会是什么问题? |
|