Nginx教程

Nginx 代理设置 proxy_pass

本文主要是介绍Nginx 代理设置 proxy_pass,对大家解决编程问题具有一定的参考价值,需要的程序猿们随着小编来一起学习吧!

Nginx网关设置

  • 欢迎使用Markdown编辑器

欢迎使用Markdown编辑器

修改nginx.conf

worker_processes  1;

events {
    worker_connections  1024;
}

http {
    include       mime.types;
    default_type  application/octet-stream;
    sendfile        on;
    #tcp_nopush     on;
    keepalive_timeout  65;
    server {
        listen       80;
        server_name  localhost;

        location / {
            root   html;
            index  index.html index.htm;
        }
        location /user/ {
            proxy_pass http://127.0.0.1:10002/;
	}
        location /sms/ {
            proxy_pass http://127.0.0.1:10001/;
	}
        location = /50x.html {
            root   html;
        }
    }
    include servers/*;
}

这篇关于Nginx 代理设置 proxy_pass的文章就介绍到这儿,希望我们推荐的文章对大家有所帮助,也希望大家多多支持为之网!