Nginx 使用之一(server参数配置)

1.下载Nginx并解压到本地文件夹中

2.基本配置详解,文件地址;nginx/conf/Nginx.conf

    server {# 服务名及配置,一个服务下可以有多个location 用来表示不同的反向代理
        listen       80; # 端口号
        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 20160920
		location /jeeCms/ { # 过滤形如localhost:80/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 20160920
		location /ctp-war/ {# 过滤形如localhost:80/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;
			}
		}
}

3.在linux或window下启动linux就可以实现反向代理了

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值