我有一个serverpilot配置的云服务器。我在其中创建了一个新的应用程序,并设置了一个监听8080的tomcat。如果我使用域名,我可以访问该tomcat:8080。现在我想修改nginx反向代理,使其在端口80上运行。
文件我尝试修改:
/etc/nginx-sp/vhosts.d/wfm.d/main.conf
现有代码
location /{
proxy_pass $backend_protocol://$backend_host:$backend_port;
}
我添加的新内容:
location /{
proxy_pass http://127.0.0.1/wfm:8080;
}
之后我重新启动了我的nginx,但它不起作用,浏览器页面继续加载,最后超时。
答案 0 :(得分:1)
使用ServerPilot向非PHP应用程序发送请求的方法不是对Nginx进行任何自定义,而是对use a .htaccess file to proxy requests to the port your app is listening on.进行自定义
您的.htaccess文件如下所示:
RewriteRule index.html http://localhost:8080/ [P]
RewriteRule (.*) http://localhost:8080/$1 [P]