时间:2023-02-05 04:40:01 | 来源:建站知识
时间:2023-02-05 04:40:01 来源:建站知识
背景:server { listen 80; server_name a.com; location / { proxy_pass http://127.0.0.1:9081; autoindex on; include conf.d/proxy.conf; deny all; }}
b、rewrite跳转server { listen 80; server_name a.com c.com;........rewrite ^(.*) https://b.com$1 permanent;}
尤其注意:如果此处server处的域名有别名,那么也会跳转;比如上述http://c.com也会跳转到b.com,即使没有配置其他的跳转。阿里云SLB端口转发如果服务只是一个后端接口,没有nginx配置前端项目,可以通过阿里云的SLB做端口的转发比如一个java接口端口是9900,可以配置http和https域名访问
上述端口80转发到9900端口,这么访问时只需要使用a.test.com访问项目即可如果需要配置https,则可以使用443转发到9900,注意https中健康检查的路径一定要是一个能够返回2XX或者3XX的URL。
关键词:方式,设置