Nginx反向代理 跨域請求 配置

用騰訊"雲開發"的http API,須要跨域請求。html

開發環境用的vue的axios作的代理,生成環境用Nginx的反向代理作vue

如下爲Nginx目錄中nginx.conf配置文件server部分ios

server {
    listen  5188; // 端口
    server_name  localhost; // 主機名

    location / {
        root  /Users/renliquan/healthAdmin; // 主目錄(網站路徑)
        index  index.html; // 默認頁面
    }

    // 訪問localhost:5188/api/tcb/  代理到https://api.weixin.qq.com/tcb/
    location /api/tcb/ {
       proxy_pass  https://api.weixin.qq.com/tcb/;
    }

    // 同上規則
    location /api/cgi-bin/token {
       proxy_pass  https://api.weixin.qq.com/cgi-bin/token;
    }
}
相關文章
相關標籤/搜索