记录一个cors nginx跨域配置

来源:互联网 发布:saas平台数据库设计 编辑:程序博客网 时间:2024/05/21 09:00

location / {

                if ($request_method = 'OPTIONS') {                    add_header 'Access-Control-Allow-Origin' 'http://10.140.10.40';                    add_header 'Access-Control-Allow-Credentials' 'true';                    add_header 'Access-Control-Allow-Methods' 'GET, POST, OPTIONS';                    add_header 'Access-Control-Allow-Headers' 'DNT,X-Mx-ReqToken,Keep-Alive,User-Agent,X-Requested-With,If-Modified-Since,Cache-Control,Content-Type';                    add_header 'Access-Control-Max-Age' 1728000;                    add_header 'Content-Type' 'text/plain charset=UTF-8';                    add_header 'Content-Length' 0;                    return 200;                }                if ($request_method = 'POST') {                    add_header 'Access-Control-Allow-Origin' 'http://10.140.10.40';                    add_header 'Access-Control-Allow-Credentials' 'true';                    add_header 'Access-Control-Allow-Methods' 'GET, POST, OPTIONS';                    add_header 'Access-Control-Allow-Headers' 'DNT,X-Mx-ReqToken,Keep-Alive,User-Agent,X-Requested-With,If-Modified-Since,Cache-Control,Content-Type';                }                if ($request_method = 'GET') {                    add_header 'Access-Control-Allow-Origin' 'http://10.140.10.40';                    add_header 'Access-Control-Allow-Credentials' 'true';                    add_header 'Access-Control-Allow-Methods' 'GET, POST, OPTIONS';                    add_header 'Access-Control-Allow-Headers' 'DNT,X-Mx-ReqToken,Keep-Alive,User-Agent,X-Requested-With,If-Modified-Since,Cache-Control,Content-Type';                }    }

原文https://gist.github.com/michiel/1064640/b7db5296020cbaf102c0776bc37b1cdec13e1955

原创粉丝点击