博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
NGINX生产环境反向代理配置
阅读量:6823 次
发布时间:2019-06-26

本文共 1200 字,大约阅读时间需要 4 分钟。

#当访问www.kazihuo.com//sichuan-user-te时,跳转到

server {        listen       80;        server_name  218.80.250.99 qyj.kazihuo.com www.sheyecare.com www.kazihuo.com www.kazihuo.com;location /sichuan-user-te/ {        proxy_pass http://10.1.93.61:7005/sichuan-user/;        proxy_set_header      Host $host;        proxy_set_header      X-Real-IP $remote_addr;        proxy_set_header      X-Forwarded-For $proxy_add_x_forwarded_for;        }}

=================================================================

#当访问时,跳转到

server {        listen       80;        server_name  218.80.250.99 qyj.kazihuo.com www.sheyecare.com www.kazihuo.com www.kazihuo.com;location /healthcloud-doctor-web {        proxy_pass http://10.1.65.133:7003;        proxy_set_header      Host $host;        proxy_set_header      X-Real-IP $remote_addr;        proxy_set_header      X-Forwarded-For $proxy_add_x_forwarded_for;        }}

 

 

-------------------------------------------------------------

作者:
出处:

转载请保留此段声明,且在文章页面明显位置给出原文链接,谢谢!

------------------------------------------------------------------------------

如果觉得这篇文章对你有小小的帮助的话,记得在右下角点个“推荐”哦,博主在此感谢!

------------------------------------------------------------------------------

你可能感兴趣的文章