nigex 反向代理

下载网址:http://nginx.org/en/download.html   直接下载Stable version版本就好

下载之后解压 我是解压到E盘了

nginx 常用命令:   在nginx文件夹下使用

nginx -t   检查配置文件是否配置成功

start nginx   启动运行nginx服务

nginx -s quit   任务完成之后,关闭Nginx服务

nginx -s stop   强制关闭Nginx服务

nginx -s reload  重启   (更改配置文件需要重启)

配置 

server {
listen 80;
server_name localhost;

#charset koi8-r;

#access_log logs/host.access.log main;

location /test1/ {
proxy_pass http://127.0.0.1:8088/;
proxy_redirect default;
}

location /test2/ {
proxy_pass http://127.0.0.1:9002/;
proxy_redirect default;
}

#error_page 404 /404.html;

# redirect server error pages to the static page /50x.html
#
error_page 500 502 503 504 /50x.html;
location = /50x.html {
root html;
}

# proxy the PHP scripts to Apache listening on 127.0.0.1:80
#
#location ~ .php$ {
# proxy_pass http://127.0.0.1;
#}

# pass the PHP scripts to FastCGI server listening on 127.0.0.1:9000
#
#location ~ .php$ {
# root html;
# fastcgi_pass 127.0.0.1:9000;
# fastcgi_index index.php;
# fastcgi_param SCRIPT_FILENAME /scripts$fastcgi_script_name;
# include fastcgi_params;
#}

# deny access to .htaccess files, if Apache's document root
# concurs with nginx's one
#
#location ~ /.ht {
# deny all;
#}
}

  

原文地址:https://www.cnblogs.com/cjb1/p/12719857.html