一、前言
记录一下nginx跨域请求的配置,方便后续自己采用
二、配置
location / {
add_header Access-Control-Allow-Origin *;
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,Authorization';
if ($request_method = 'OPTIONS') {
return 204;
}
}
三、参考文章
https://blog.csdn.net/lazycheerup/article/details/86678737
四、总结
很小的问题记录一下。