我们使用 Nginx 作为 SSL 代理,并且在两个不同的端口上有一个主机名和两个应用程序。如果可能的话,在 nginx.conf 中进行设置的最佳方法是什么。
问问题
130 次
2 回答
0
因为它都是内部的,所以我们这样做的简单方法是为同一主机上的另一个端口添加另一条监听线。
它不起作用的原因是因为我将 IPTABLES 锁定并忘记了。
解决了。抱歉,添麻烦了。
于 2012-08-13T15:09:57.687 回答
0
为您的应用程序设置命名位置,并参考 try_files 指令中的位置:
server {
location @app1 {
... (proxy/fcgi/sgci directives depending on what kind of app you're directing to)
}
location @app2 {
... (proxy/fcgi/sgci directives depending on what kind of app you're directing to)
}
location /app-path1/ {try_files @app1;}
location /app-path2/ {try_files @app2;}
}
于 2012-08-11T12:44:23.460 回答