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就可以实现反向代理了

你可能感兴趣的:(Nginx 使用之一(server参数配置))