nginx的纯代理转发简单配置

Posted Adam_Chen

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了nginx的纯代理转发简单配置相关的知识,希望对你有一定的参考价值。

 
worker_processes  1;
events {
    worker_connections  1024;
}
http {
    include       mime.types;
    default_type  application/octet-stream;
    sendfile        on;
    keepalive_timeout  65;
    server {
	#监听80端口
        listen       80;
        server_name  localhost;
 
        #charset utf-8;
 
        error_page   500 502 503 504  /50x.html;
        location = /50x.html {
            root   html;
        }
	#如果是其他项目就转发到8080端口
	location / {
	   proxy_pass   http://127.0.0.1:8080;	
	}
	#如果包含/aaa/就转发到9001端口
        location ^~ /aaa/ {
           proxy_pass   http://127.0.0.1:9001;
        }
	#如果包含/bbb/就转发到9002端口
        location ^~ /bbb/ {
           proxy_pass   http://127.0.0.1:9002;
        }
    }
}

  

以上是关于nginx的纯代理转发简单配置的主要内容,如果未能解决你的问题,请参考以下文章

Nginx代理proxy pass配置去除前缀

Nginx转发+反向代理实现跨域接口转发

Nginx代理proxy pass配置去除前缀

Nginx 配置TCP代理转发

nginx转发请求

nginx简单配置