Nginx 跨域問題解決方案

MedusaSorcerer的博客


不少人都會遇到 Nginx 跨域的問題, 而我遇到的問題是:html

  • 客戶端在 www.a.com
  • 服務端在 www.b.com
  • Nginx 在 www.c.com

此時須要對 Nginx 進行跨域配置才能夠訪問 www.c.com 的獲取客戶端 www.a.com 來請求 www.b.com 的數據, 個人 Nginx 配置以下(重要部分):nginx

location / {
    add_header 'Access-Control-Allow-Origin' $http_origin;
    add_header 'Access-Control-Allow-Credentials' 'true';
    add_header 'Access-Control-Allow-Methods' 'GET, POST, OPTIONS';
    add_header 'Access-Control-Allow-Headers' 'DNT,web-token,app-token,Authorization,Accept,Origin,Keep-Alive,User-Agent,X-Mx-ReqToken,X-Data-Type,X-Auth-Token,X-Requested-With,If-Modified-Since,Cache-Control,Content-Type,Range';
    add_header 'Access-Control-Expose-Headers' 'Content-Length,Content-Range';
    if ($request_method = 'OPTIONS') {
            add_header 'Access-Control-Max-Age' 1728000;
            add_header 'Content-Type' 'text/plain; charset=utf-8';
            add_header 'Content-Length' 0;
            return 204;
    }
    root   html;
    proxy_pass http://xxx:8000/;
    proxy_set_header Host $host;
    proxy_set_header X-Real-IP $remote_addr;
    proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
    proxy_set_header X-Forwarded-Proto $scheme;
    proxy_connect_timeout 5;
}
複製代碼

別忘了把配置中 proxy_pass 對應的 http://xxx:8000/ 地址換成你的服務地址, 固然了, 你的客戶端請求的地址不能夠是你的服務地址, 而是 Nginx 的地址, 這樣就能夠達到解決跨域的問題。web

相關文章
相關標籤/搜索