muyang 发表于 2014-6-13 18:32:33

军哥的lnmpa一键包怎么绑定多端口

如题,不影响80的情况下

再绑定几个端口

具体应该改哪,改了半天,好像还是自动转到80下了

------

我直接改的nginx的端口,在listen下面加了几个端口,访问时到是能访问,但显示的内容是80端口的内容

[ 本帖最后由 muyang 于 2014-6-13 18:35 编辑 ]

licess 发表于 2014-6-13 21:26:15

你如果都是只改default server上加几个listen的话肯定还是80的内容
否则肯定不是,在新建的上面修改是啥就是啥,没法东西就是403,放了index文件就是index的内容

muyang 发表于 2014-6-14 01:44:19

我是改的虚拟主机文件,改的下面这个路径
/usr/local/nginx/conf/vhost/www.xxx.com.conf

server
    {

      listen       80;
      listen       150;
      
      server_name www.xxx.com;
      index index.html index.htm index.php default.html default.htm default.php;
      root/home/wwwroot/default/www.xxx.com;


      location / {
            try_files $uri @apache;
            }

      location @apache {
            internal;
            proxy_pass http://127.0.0.1:88;
            include proxy.conf;
            }

      location ~ .*\.(php|php5)?$
            {
                proxy_pass http://127.0.0.1:88;
                include proxy.conf;
            }

      location ~ .*\.(gif|jpg|jpeg|png|bmp|swf)$
            {
                expires      30d;
            }

      location ~ .*\.(js|css)?$
            {
                expires      12h;
            }

      access_log off;
    }



访问:150时,显示的是80的内容

程序做过处理,会自动判断出相应端口,显示相应内容


在单独的nginx或apache上都测试成功了,但两者结合的环境就是不成功。。

[ 本帖最后由 muyang 于 2014-6-14 01:54 编辑 ]
页: [1]
查看完整版本: 军哥的lnmpa一键包怎么绑定多端口