我正在从IBM HTTP服务器迁移到nginx,并且如果我们使用该位置作为根目录(/
,那么在 404“找不到页面” 之后,可以看到主页正在重定向。
注意:应用程序和Nginx在Docker容器中运行
尝试使用重定向并使用我要访问的确切URL进行proxy_pass,但无法正常工作。
理想情况下,如果我们仅在URL中使用主机名而不出现404错误,则应该加载主页。
以下是配置:
upstream my-domain {
sticky;
server my.domainA.com:9443 max_fails=3 fail_timeout=300s weight=1;
server my.domainB.com:9443 max_fails=3 fail_timeout=300s weight=3;
}
location / {
proxy_pass https://my-domain;
proxy_redirect off;
}