码迷,mamicode.com
首页 > 其他好文 > 详细

Nginx 反向代理配置示例(conf文件配置)

时间:2020-02-01 10:40:47      阅读:64      评论:0      收藏:0      [点我收藏+]

标签:har   remote   ati   list   ges   www   html   usr   cat   

Nginx 反向代理配置示例(conf文件配置)

  • www.aaa.com代理到http://127.0.0.1:3001
server {
    listen       80;
    server_name  www.aaa.com;

    #charset koi8-r;
    #access_log  /var/log/nginx/host.access.log  main;

    location / {
    proxy_set_header Host $host;
    proxy_set_header X-Real-IP $remote_addr;
    proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
    proxy_buffering off;
        
    proxy_pass http://127.0.0.1:3001;
    }

    #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   /usr/share/nginx/html;
    }
 
}

  • www.bbb.com代理到http://127.0.0.1:3002
server {
    listen       80;
    server_name  www.bbb.com;

    #charset koi8-r;
    #access_log  /var/log/nginx/host.access.log  main;

    location / {
    proxy_set_header Host $host;
    proxy_set_header X-Real-IP $remote_addr;
    proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
    proxy_buffering off;
        
    proxy_pass http://127.0.0.1:3002;
    }

    #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   /usr/share/nginx/html;
    }
 
}

Nginx 反向代理配置示例(conf文件配置)

标签:har   remote   ati   list   ges   www   html   usr   cat   

原文地址:https://www.cnblogs.com/mengfangui/p/12247377.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!