server {
listen 80;
listen [::]:80;
server_name localhost;
#root /etc/nginx/html;
#charset koi8-r;
#access_log /var/log/nginx/host.access.log main;
location /api1 {
add_header 'Access-Control-Allow-Origin' $http_origin;
add_header 'Access-Control-Allow-Credentials' 'true';
add_header 'Access-Control-Allow-Headers' $http_access_control_request_headers;
add_header 'Access-Control-Allow-Methods' *;
if ($request_method = 'OPTIONS') {
return 200;
}
alias /usr/api1;
# 用于vue打包發(fā)布后的路由跳轉(zhuǎn)
try_files $uri $uri/ /index.html @router;
index index.html index.htm;
}
location /api2 {
add_header 'Access-Control-Allow-Origin' $http_origin;
add_header 'Access-Control-Allow-Credentials' 'true';
add_header 'Access-Control-Allow-Headers' $http_access_control_request_headers;
add_header 'Access-Control-Allow-Methods' *;
if ($request_method = 'OPTIONS') {
return 200;
}
alias /usr/api2;
try_files $uri $uri/ /index.html @router;
index index.html index.htm;
}
location /api3 {
add_header 'Access-Control-Allow-Origin' $http_origin;
add_header 'Access-Control-Allow-Credentials' 'true';
add_header 'Access-Control-Allow-Headers' $http_access_control_request_headers;
add_header 'Access-Control-Allow-Methods' *;
if ($request_method = 'OPTIONS') {
return 200;
}
alias /usr/api3;
try_files $uri $uri/ /index.html @router;
index index.html index.htm;
}
location @router {
rewrite ^.*$ /index.html last;
}
location /api {
proxy_set_header x-forwarded-for $remote_addr;
proxy_pass http://127.0.0.1:7001/api;
}
location / {
proxy_pass http://127.0.0.1:7001;
}
error_page 500 502 503 504 /50x.html;
location = /50x.html {
root /usr/share/nginx/html;
}
}
Ngxin請求轉(zhuǎn)發(fā)示例
?著作權(quán)歸作者所有,轉(zhuǎn)載或內(nèi)容合作請聯(lián)系作者
- 文/潘曉璐 我一進店門蝌借,熙熙樓的掌柜王于貴愁眉苦臉地迎上來昔瞧,“玉大人,你說我怎么就攤上這事菩佑∽晕” “怎么了?”我有些...
- 文/不壞的土叔 我叫張陵稍坯,是天一觀的道長酬荞。 經(jīng)常有香客問我搓劫,道長,這世上最難降的妖魔是什么混巧? 我笑而不...
- 正文 為了忘掉前任枪向,我火速辦了婚禮,結(jié)果婚禮上咧党,老公的妹妹穿的比我還像新娘秘蛔。我一直安慰自己,他們只是感情好傍衡,可當(dāng)我...
- 文/花漫 我一把揭開白布深员。 她就那樣靜靜地躺著,像睡著了一般蛙埂。 火紅的嫁衣襯著肌膚如雪倦畅。 梳的紋絲不亂的頭發(fā)上,一...
- 文/蒼蘭香墨 我猛地睜開眼谈山,長吁一口氣:“原來是場噩夢啊……” “哼!你這毒婦竟也來了宏怔?” 一聲冷哼從身側(cè)響起奏路,我...
- 正文 年R本政府宣布位他,位于F島的核電站氛濒,受9級特大地震影響产场,放射性物質(zhì)發(fā)生泄漏。R本人自食惡果不足惜舞竿,卻給世界環(huán)境...
- 文/蒙蒙 一京景、第九天 我趴在偏房一處隱蔽的房頂上張望。 院中可真熱鬧骗奖,春花似錦确徙、人聲如沸。這莊子的主人今日做“春日...
- 文/蒼蘭香墨 我抬頭看了看天上的太陽厦凤。三九已至鼻吮,卻和暖如春,著一層夾襖步出監(jiān)牢的瞬間较鼓,已是汗流浹背椎木。 一陣腳步聲響...
推薦閱讀更多精彩內(nèi)容
- 響應(yīng)頭:response.sendError(int sc,String msg)慎框; 獲取請求URL 請求轉(zhuǎn)發(fā)和請...
- 用戶向服務(wù)器發(fā)送了一次HTTP請求,該請求可能會經(jīng)過多個信息資源處理以后才返回給用戶后添,各個信息資源使用請求轉(zhuǎn)發(fā)機制...
- RequestDispatcher類的forward()方法和HttpServletRequest類的sendRe...
- Table of Contents HTTP 請求方法[#http-%E8%AF%B7%E6%B1%82%E6%9...
- 請求轉(zhuǎn)發(fā)作用:實現(xiàn)多個servlet聯(lián)動操作請求硫嘶,避免代碼冗余,讓servlet的職責(zé)更加明確梧税。使用:req.ge...