- 本机有nginx和apache,nginx作前端,主要处理静态数据,而动态数据交由后端的apache来处理。
- 1.在/etc/naginx/conf.d中自定义为s.conf中加入server区块:
- server {
- listen 80;
- server_name test.server;
- location / {
- proxy_pass http://test; //后端ip地址
- proxy_redirect off; //关闭后端返回的header修改
- proxy_set_header Host $host; //修改发送到后端的header的host
- proxy_set_header X-Real-IP $remote_addr; //设置真实ip
- proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
- }
- }
- 2..在/etc/naginx/conf.d中自定义为up.conf中加入upstream区块:
- upstream test {
- ip_hash;
- server127.0.0.1:8080;
- }
nginx反向代理
最新推荐文章于 2024-04-28 19:40:53 发布