Nginx解決前端跨域問題 CORS跨域配置
最近連續兩個朋友問我跨域相關問題,我猜想可能不少朋友也遇到類似問題,我打算寫個部落格聊一下我實際使用的配置, |
先說明一下,我並不太瞭解這配置,沒精力去了解太多,但我覺得其中有一些關鍵的小注意點,可能有些初學者不太注意到,導致配置有問題,本文章可能只對新手有點幫助,如果你有好配置,歡迎評論回覆,讓大家學習!
Nginx的CORS配置,網上太多這配置了,但大家更多的複製貼上、轉發,幾乎都是類似下面這三兩行:
add_header Access-Control-Allow-Origin *; add_header Access-Control-Allow-Headers X-Requested-With; add_header Access-Control-Allow-Methods GET,POST,OPTIONS;
這樣有用麼?有用,我以前這樣使用也正常過,但後來還是遇到問題了,發現有些專案請求就不成功,也遇到有些瀏覽器成功,有些瀏覽器不成功;
我也在網上查詢各種資料和調整寫法,最後我調整好的寫法,基本的使用沒問題,我在專案中也一直使用著!
下面發一段我實際專案中的部分配置:
location /aoda-web { 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; index index.html index.htm; proxy_pass 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; }
跨域相關的配置,主要是下面這部分:
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; }
下面簡單講解一下,以便大家配置成功!
1、Access-Control-Allow-Origin,這裡使用變數 $http_origin取得當前來源域,大家說用“*”代表允許所有,我實際使用並不成功,原因未知;
2、Access-Control-Allow-Credentials,為 true 的時候指請求時可帶上Cookie,自己按情況配置吧;
3、Access-Control-Allow-Methods,OPTIONS一定要有的,另外一般也就GET和POST,如果你有其它的也可加進去;
4、Access-Control-Allow-Headers,這個要注意,裡面一定要包含自定義的http頭欄位(就是說前端請求介面時,如果在http頭裡加了自定義的欄位,這裡配置一定要寫上相應的欄位),從上面可看到我寫的比較長,我在網上搜尋一些常用的寫進去了,裡面有“web-token”和“app-token”,這個是我專案裡前端請求時設定的,所以我在這裡要寫上;
5、Access-Control-Expose-Headers,可不設定,看網上大致意思是預設只能獲返回頭的6個基本欄位,要獲取其它額外的,先在這設定才能獲取它;
6、語句“ if ($request_method = 'OPTIONS') { ”,因為瀏覽器判斷是否允許跨域時會先往後端發一個 options 請求,然後根據返回的結果判斷是否允許跨域請求,所以這裡單獨判斷這個請求,然後直接返回;
好了,按我上面配置基本都可使用(有些朋友確定只百度複製了兩行,然後說配置好了,跟前端朋友互扯),
下面發一個實際配置供參考,我做了少量更改,如下:
server { listen 80; server_name xxx.com; location /xxx-web/papi { 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; index index.html index.htm; proxy_pass 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; } location /xxx-web { 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; index index.html index.htm; proxy_pass 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; } location / { root /var/www/xxx/wechat/webroot; index index.html index.htm; } error_page 500 502 503 504 /50x.html; location = /50x.html { root html; } }
原文地址:
來自 “ ITPUB部落格 ” ,連結:http://blog.itpub.net/31559985/viewspace-2676572/,如需轉載,請註明出處,否則將追究法律責任。
相關文章
- cors解決跨域問題CORS跨域
- 深入跨域問題(2) - 利用 CORS 解決跨域跨域CORS
- 跨域問題,解決方案 – CORS方案跨域CORS
- Vue 跨域問題解決辦法 Vue 配置防止跨域 nginx 重定向防止跨域Vue跨域Nginx
- 搞懂:前端跨域問題JS解決跨域問題VUE代理解決跨域問題原理前端跨域JSVue
- web前端跨域解決方案JSONP,CORS,NGINX反向代理Web前端跨域JSONCORSNginx
- 解決跨域問題 barryvdh/Laravel-cors跨域LaravelCORS
- Nginx解決前端訪問資源跨域問題Nginx前端跨域
- Nginx 配置 Vue 專案解決跨域問題NginxVue跨域
- 跨域共享CORS詳解及Gin配置跨域跨域CORS
- CORS跨域問題梳理CORS跨域
- has been blocked by CORS policy跨域問題解決BloCCORS跨域
- SpringBoot中通過CORS解決跨域問題Spring BootCORS跨域
- nginx /Java 解決跨域問題方案NginxJava跨域
- nginx 解決圖片跨域問題Nginx跨域
- CORS方式實現ajax跨域 — nginx配置CORS跨域Nginx
- Nginx跨域問題Nginx跨域
- 前端跨域問題解決方案(基於node與nginx)前端跨域Nginx
- 前端怎麼解決跨域問題前端跨域
- 前端解決跨域問題總結前端跨域
- 前端跨域問題及其解決方案前端跨域
- Nginx配置解決NetCore的跨域NginxNetCore跨域
- 解決CORS跨域不能傳遞cookies的問題CORS跨域Cookie
- 使用Nginx來解決跨域的問題Nginx跨域
- vue webpack配置解決跨域問題VueWeb跨域
- 解決跨域問題跨域
- 深入跨域問題(3) – 利用 JSONP 解決跨域跨域JSON
- 深入跨域問題(3) - 利用 JSONP 解決跨域跨域JSON
- 深入跨域問題(1) - 初識 CORS 跨域資源共享跨域CORS
- vue解決前端跨域到nginx配置項小記Vue前端跨域Nginx
- CORS跨域與Nginx反向代理跨域優劣對比CORS跨域Nginx
- 前端跨域問題前端跨域
- 前端http請求跨域問題解決前端HTTP跨域
- CORS跨域CORS跨域
- 跨域CORS跨域CORS
- springboot配置CORS允許跨域訪問Spring BootCORS跨域
- Spring boot 解決跨域問題配置類Spring Boot跨域
- 前端跨域問題如何解決前端跨域