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

nginx部署前端静态代码解决本地接口调用跨域问题

时间:2018-12-08 17:52:09      阅读:298      评论:0      收藏:0      [点我收藏+]

标签:Nginx部署   html   ccf   bsp   前端   $1   list   静态   char   

server {
    listen 90;
    server_name localhost;

    #charset koi8-r;

    #access_log logs/host.access.log main;
    proxy_set_header Host $host:$server_port; //需要加上,解决运行时端口丢失问题
location / {
    root html;
    index index.html index.htm;
}
// 将 蓝色的 丢进去 改一下对应的

 

 //js内ajax请求的ip地址  如 localhost:8080/api/      改为   /apis/api   
location /apis {               
      rewrite ^.+apis/?(.*)$ /$1 break;
      include uwsgi_params;
                    proxy_pass http://localhost:8080;  //  需要调用的后台ip地址  
}

}

nginx部署前端静态代码解决本地接口调用跨域问题

标签:Nginx部署   html   ccf   bsp   前端   $1   list   静态   char   

原文地址:https://www.cnblogs.com/zylbock/p/10088217.html

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