博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
nginx做代理IP端口转发
阅读量:6251 次
发布时间:2019-06-22

本文共 1578 字,大约阅读时间需要 5 分钟。

  hot3.png

    upstream ups.main {
       server 127.0.0.1:8080;
    }
    upstream ups.bbs {
       server 127.0.0.1:8081;
    }
    server {
         listen 80;
         server_name www.kantongcheng.com;
         location / {
             proxy_pass http://ups.main;
             proxy_set_header  X-Real-IP  $remote_addr;
             proxy_set_header Host $host;
         }
    }
    server {
         listen 80;
         server_name bbs.kantongcheng.com;
         location / {
             proxy_pass http://ups.bbs;
             proxy_set_header  X-Real-IP  $remote_addr;
             proxy_set_header Host $host;
         }
    }
    server {
        listen 8081;
        server_name  localhost;
        #charset koi8-r;
        #access_log  logs/host.access.log  main;
        location / {
            root   /www/webroot;
            index  index.html index.htm index.php;
        }
        #error_page  404              /404.html;
        #charset koi8-r;
        #access_log  logs/host.access.log  main;
        location / {
            root   /www/webroot;
            index  index.html index.htm index.php;
        }
        #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           /www/webroot;
            fastcgi_pass   127.0.0.1:9000;
            fastcgi_index  index.php;
            fastcgi_param  SCRIPT_FILENAME /www/webroot$fastcgi_script_name;
            include fastcgi_params;
            if ($request_uri ~ "^(.*)(\?.*)$") {
                set $path_info $1;
            }
            fastcgi_param PATH_INFO $path_info;set $path_info $request_uri;
        }
        # deny access to .htaccess files, if Apache's document root
        # concurs with nginx's one
        #
        #location ~ /\.ht {
        #    deny  all;
        #}
    }

转载于:https://my.oschina.net/kear/blog/109868

你可能感兴趣的文章
Nginx入门(2)反向代理和负载均衡
查看>>
MySQL库表状态查询
查看>>
【鲁班学院】干货分享!《面试必备之Mysql索引底层原理分析》
查看>>
快捷键
查看>>
第十一周项目0-是春哥啊
查看>>
poi做一个简单的EXCAL
查看>>
几种查询emacs帮助的办法
查看>>
MariaDB 数据库
查看>>
Python_基础_(模块,time,random,os,sys,json,shelve,xml,序列化反序列化)
查看>>
Redis几个认识误区
查看>>
异常:Project configuration is not up-to-date with pom.xml解决方案
查看>>
HDU2647 拓扑排序
查看>>
ThinkPHP/---微信支付PC流程
查看>>
JavaScript 05
查看>>
python 多线程编程之threading模块(Thread类)创建线程的三种方法
查看>>
实验三
查看>>
水仙花数
查看>>
常用正则表达式
查看>>
P3308 [SDOI2014]LIS(最小割+退流)
查看>>
Intellij IDEA 快捷键整理
查看>>