标签: nginx
我有这个问题 现在我在服务器1(nginx)上的端口80上工作。 当我在url中键入此链接时,它应该导航到在端口8080上运行的服务器2(Apapche)。 一切正常。也就是说,它正在导航并显示目录(demo_static_file)的内容,但不显示文件,即; a1.txt
下面是我的nginx配置。
location /a1.txt { proxy_pass http://35.10.28.10:8080/demo_static_file; }