nginx代理转发失效?
大家讲道理
大家讲道理 2017-05-16 17:17:00
0
1
647

直接在nginx.conf里面配置一个虚拟主机,实现代理转发,测试ok,如下:

server
{
    listen       80;
    listen         443;
    server_name  yangbai.com;
    root  /Library/WebServer/Documents/yangbai;
    index  index.php;
    location / {
        #root    /Library/WebServer/Documents/youzan_oa/yzOA/src;
        index   index.html index.htm login.html;
    }

    location   /oauth/token {
       proxy_pass     http://api.yangbai.com;
    }
}

测试:http://yangbai.com/oauth/token成功代理到http://api.yangbai.com

但是我把上面的配置抽离出来,放到nginx.conf同级目录servers下面,命名yangbai.com.conf内容和上面的一样,然后nginx.conf里面通过 include servers/*;加载,但是测试始终没法代理到。。。各位路过的兄弟姐妹看看呗,小弟对nginx配置不怎么熟悉呢。

大家讲道理
大家讲道理

光阴似箭催人老,日月如移越少年。

全部回复(1)
習慣沉默

include 的路径写完整,例如:

include /usr/local/nginx/conf.d/*.ngx.conf;
热门教程
更多>
最新下载
更多>
网站特效
网站源码
网站素材
前端模板