首页 > 其他 > 详细

nginx 跨域解决

时间:2018-08-10 20:52:18      阅读:169      评论:0      收藏:0      [点我收藏+]

server {

  listen 8811 default_server;

 

   root /opt/bp;

 

   # Make site accessible from http://localhost/

   server_name localhost;

 

   location / {

     if ( $request_method = OPTIONS ) { add_header Access-Control-Allow-Origin "$http_origin";add_header Access-Control-Allow-Methods "POST, GET, PUT, OPTIONS, DELETE";add_header Access-Control-Max-Age "3600";add_header Access-Control-Allow-Headers "Origin, X-Requested-With, Content-Type, Accept, Authorization";add_header Access-Control-Allow-Credentials "true";add_header Content-Length 0;add_header Content-Type text/plain;return 200;} add_header ‘Access-Control-Allow-Origin‘ ‘$http_origin‘;add_header ‘Access-Control-Allow-Credentials‘ ‘true‘;add_header ‘Access-Control-Allow-Methods‘ ‘GET, PUT, POST, DELETE, OPTIONS‘;add_header ‘Access-Control-Allow-Headers‘ ‘Content-Type,*‘;try_files $uri $uri/ =404;autoindex on;}

}

nginx 跨域解决

原文:https://www.cnblogs.com/sea-stream/p/9457014.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!