青柠部落阁青柠部落阁
Java
Git
Collect
Vue
Nginx
Others
GitHub
Java
Git
Collect
Vue
Nginx
Others
GitHub
  • Vue

    • Nginx配置允许跨域

Nginx配置允许跨域

  • 在需要允许跨域的location中添加如下配置
add_header 'Access-Control-Allow-Origin' '*';
add_header 'Access-Control-Allow-Headers' '*';
add_header 'Access-Control-Allow-Methods' '*';
# OPTIONS 直接返回204
if ($request_method = 'OPTIONS') {
    return 204;
}
Contributors: ChenYue