nginx 设置为反向代理的目录重定向问题
Directory redirection issue with nginx set as reverse proxy
我已经通过 Reverse Foloxy 配置服务器如下:
Nginx反向代理(SSL终止)-varnish缓存-Nginx web服务器(8080端口)
但是,它存在以下问题:例如,如果您转到 https://www.example.com/static (this is an example only, your domain is not my site), you will be redirected to http://www.example.com:8080/static/。不仅访问 staic,访问其他目录时也是如此。我想知道如何做 nginx.conf 之类的事情来解决这个问题。
port_in_redirect off;
Nginx web server(8080端口)在对应的server块中加入上述设置即可解决
我已经通过 Reverse Foloxy 配置服务器如下:
Nginx反向代理(SSL终止)-varnish缓存-Nginx web服务器(8080端口)
但是,它存在以下问题:例如,如果您转到 https://www.example.com/static (this is an example only, your domain is not my site), you will be redirected to http://www.example.com:8080/static/。不仅访问 staic,访问其他目录时也是如此。我想知道如何做 nginx.conf 之类的事情来解决这个问题。
port_in_redirect off;
Nginx web server(8080端口)在对应的server块中加入上述设置即可解决