文件地址nginx/conf/Nginx.conf
文件地址;nginx/conf/Nginx.conf [java] view plain copy
server {# 服务名及配置,一个服务下可以有多个location 用来表示不同的反向代理
listen ; # 端口号
server_name localhost; #主机名,默认是本主机 #charset koi8-r; #access_log logs/host.access.log main; location / { # /表示根目录,该配置表示Nginx默认打开/www下的index.html
root /www; #根目录,该配置表示Nginx默认打开/www
index index.html index.htm; #若index.html 不存在,则打开index.htm
}
#添加jeeCms代理 npl
location /jeeCms/ { # 过滤形如localhost:/jeeCms/的url
proxy_pass http://192.168.2.8:8070/jeeCms/;#转发至形如http://192.168.2.8:8070/jeeCms/的地址
proxy_redirect off; # 关闭重定向
proxy_set_header Host $host:$server_port;
proxy_set_header X-Real-IP $remote_addr;
proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
}
#添加ctp-war代理 npl
location /ctp-war/ {# 过滤形如localhost:/ctp-war/的url
proxy_pass http://192.168.2.8:8020/ctp-war/; #转发至形如http://192.168.2.8:8070/ctp-war/的地址
proxy_redirect off;# 关闭重定向
proxy_set_header Host $host:$server_port;
proxy_set_header X-Real-IP $remote_addr;
proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
}
}