nginx反向代理设置

2016-07-08 17:44 阅读

nginx是高性能的HTTP和反向代理服务器,jspxcms的演示站也是由nginx搭建,这里将相关配置贴出,提供给大家参考。

proxy.conf文件

主要解决获取访问者真实IP问题。

proxy_set_header            Host $host;
proxy_set_header            X-Real-IP $remote_addr;
proxy_set_header            X-Forwarded-For $proxy_add_x_forwarded_for;

转发配置

需要转发首页(如果首页设置成使用静态页,就不用转发)和.jsp,.jspx,.do,.servlet这四个后缀的请求到tomcat。另外tomcat有时会在地址后面加上;jsessionid=...,需要把这个情况考虑进去。

server {
    listen       80;
    server_name  demo.ujcms.com dm.ujcms.com;

    location ~ \.(jsp|jspx|do|servlet)?(\;jsessionid=.*)?$ {
      proxy_pass http://localhost:8080;
    }

    location ~ \;jsessionid=.*$ {
      proxy_pass http://localhost:8080;
    }


    location / {
        root   /home/demo/webapps/ROOT;
        index  index.html index.htm index.jsp index.jspx index.do;
    }

    error_page   500 502 503 504  /50x.html;
    location = /50x.html {
        root   /usr/share/nginx/html;
    }

    location /WEB-INF/ {
        deny  all;
    }
}
QQ咨询
电话
微信
微信扫码咨询