您好,登錄后才能下訂單哦!
這篇文章主要介紹了Nginx代理axios請求及注意事項是什么的相關(guān)知識,內(nèi)容詳細(xì)易懂,操作簡單快捷,具有一定借鑒價值,相信大家閱讀完這篇Nginx代理axios請求及注意事項是什么文章都會有所收獲,下面我們一起來看看吧。
1. nginx.conf 配置信息
由于nginx.conf配置信息較多,本篇只關(guān)注跟axios和靜態(tài)資源請求設(shè)置,順便也將常見的一些配置項備注一下。具體設(shè)置如下:
# 設(shè)定http服務(wù)器,利用它的反向代理功能提供負(fù)載均衡支持 http { #連接超時時間 keepalive_timeout 120; #gzip壓縮開關(guān)及相關(guān)配置 gzip on; gzip_min_length 1k; gzip_buffers 4 32k; gzip_http_version 1.1; gzip_comp_level 2; gzip_types text/plain application/x-javascript text/css application/xml; gzip_vary on; gzip_disable "msie [1-6]."; #設(shè)定實際的服務(wù)器列表 upstream zp_server{ server 127.0.0.1:8089; } #http服務(wù)器 server { #監(jiān)聽80端口 listen 80 #定義服務(wù)名稱 server_name localthost; #首頁 index index.html #指向項目根目錄 root d:\project\src\main\webapp; #編碼格式 charset utf-8; #代理的路徑(和upstream綁定),location 后面設(shè)置映射的路徑 location / { #代理配置參數(shù) proxy_connect_timeout 180; proxy_send_timeout 180; proxy_read_timeout 180; proxy_set_header host $host; proxy_set_header x-forwarder-for $remote_addr; proxy_pass http://zp_server/; #跨域相關(guān)設(shè)置 add_header 'access-control-allow-origin' '*' always; add_header 'access-control-allow-credentials' 'true'; add_header 'access-control-allow-headers' 'origin, x-requested-with, content-type, accept' always; } #配置靜態(tài)資源 解決js css文件無法加載無法訪問的問題,注意末尾不能有 / location ~ .*\.(js|css|jpg|png)$ { proxy_pass http://zp_server; } } }
2. proxy_pass的斜杠問題
nginx的將proxy_pass分為兩種類型:
一種是只包含ip和端口號的(連端口之后的/也沒有,這里要特別注意),比如proxy_pass http://localhost:8080,這種方式稱為不帶uri方式;
另一種是在端口號之后有其他路徑的,包含了只有單個/的,如proxy_pass http://localhost:8080/,以及其他路徑,比如proxy_pass http://localhost:8080/abc。
2.1 對于不帶uri方式
對于不帶uri方式,nginx將會保留location中路徑部分,比如:
location /api1/ { proxy_pass http://localhost:8080; }
在訪問http://localhost/api1/xxx時,會代理到http://localhost:8080/api1/xxx
2.2 對于帶uri方式
對于帶uri方式,nginx將使用諸如alias的替換方式對url進(jìn)行替換,并且這種替換只是字面上的替換,比如:
location /api2/ { proxy_pass http://localhost:8080/; }
當(dāng)訪問http://localhost/api2/xxx時,http://localhost/api2/(注意最后的/)被替換成了http://localhost:8080/,然后再加上剩下的xxx,于是變成了http://localhost:8080/xxx。
2.3 總結(jié)一下
server { listen 80; server_name localhost; location /api1/ { proxy_pass http://localhost:8080; } # http://localhost/api1/xxx -> http://localhost:8080/api1/xxx location /api2/ { proxy_pass http://localhost:8080/; } # http://localhost/api2/xxx -> http://localhost:8080/xxx location /api3 { proxy_pass http://localhost:8080; } # http://localhost/api3/xxx -> http://localhost:8080/api3/xxx location /api4 { proxy_pass http://localhost:8080/; } # http://localhost/api4/xxx -> http://localhost:8080//xxx,請注意這里的雙斜線,好好分析一下。 location /api5/ { proxy_pass http://localhost:8080/haha; } # http://localhost/api5/xxx -> http://localhost:8080/hahaxxx,請注意這里的haha和xxx之間沒有斜杠,分析一下原因。 location /api6/ { proxy_pass http://localhost:8080/haha/; } # http://localhost/api6/xxx -> http://localhost:8080/haha/xxx location /api7 { proxy_pass http://localhost:8080/haha; } # http://localhost/api7/xxx -> http://localhost:8080/haha/xxx location /api8 { proxy_pass http://localhost:8080/haha/; } # http://localhost/api8/xxx -> http://localhost:8080/haha//xxx,請注意這里的雙斜杠。 }
關(guān)于“Nginx代理axios請求及注意事項是什么”這篇文章的內(nèi)容就介紹到這里,感謝各位的閱讀!相信大家對“Nginx代理axios請求及注意事項是什么”知識都有一定的了解,大家如果還想學(xué)習(xí)更多知識,歡迎關(guān)注億速云行業(yè)資訊頻道。
免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點不代表本網(wǎng)站立場,如果涉及侵權(quán)請聯(lián)系站長郵箱:is@yisu.com進(jìn)行舉報,并提供相關(guān)證據(jù),一經(jīng)查實,將立刻刪除涉嫌侵權(quán)內(nèi)容。