nginx 解决跨域(cors) 返回增加头部

nginx 解决跨域(cors) 返回增加头部

 location / {
    add_header 'Access-Control-Allow-Origin' "$http_origin";# http_origin 代表请求的origin
    add_header 'Access-Control-Allow-Credentials' 'true'; #用于有cookie需要跨域,如果没cookie可以不用
    add_header 'Access-Control-Allow-Methods' 'GET, POST, OPTIONS';
    #......
    }

你可能感兴趣的:(nginx)