nginx代理模式
Posted ztyc
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了nginx代理模式相关的知识,希望对你有一定的参考价值。
地址:https://www.cnblogs.com/jiangwangxiang/p/8481661.html
代理服务:
server {
listen 80;
server_name nczfgjj.com www.nczfgjj.com www.nczfgjj.gov.cn zfgjj.nanchong.gov.cn;
access_log /home/www/wsdt.nczfgjj.com/logs/access_log;
charset gbk;
location / {
index index.php index.html index.htm;
fastcgi_index index.php;
proxy_pass http://172.168.10.212:89;
proxy_set_header Host $host;
proxy_set_header Accept-Encoding "none";
proxy_set_header X-Real-IP $remote_addr;
proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
proxy_set_header Via "nginx";
}
}
以上是关于nginx代理模式的主要内容,如果未能解决你的问题,请参考以下文章
带有 Express 和 nginx 反向代理的 Vue Router 历史模式