[請益] Nginx 同主機多伺服器配靜態資源
同台電腦配置多個伺服器
類似這樣
location /server3 {
proxy_pass http://127.0.0.1:7000/;
}
location /server2 {
proxy_pass http://127.0.0.1:8000/;
}
location / {
proxy_pass http://127.0.0.1:9000/;
}
如果打開 server3 http://localhost/server3
其中有引入靜態資源路徑是 ./index.css
找的會是根伺服器 localhost / 的靜態資源
要用 localhost:7000/index.css 才能正確讀到
請問我要怎麼配置
才能即使 根伺服器 和 server3 都有引用 ./index.css
也能正確分別引用
使用 http://localhost/server3
能正確讀取到 ./index.css
而不是404或其他伺服器的
--
※ 發信站: 批踢踢實業坊(ptt.cc), 來自: 111.243.150.14 (臺灣)
※ 文章網址: https://www.ptt.cc/bbs/MIS/M.1678013600.A.8A6.html
※ 編輯: surimodo (111.243.150.14 臺灣), 03/05/2023 18:54:58
→
03/05 19:32,
1年前
, 1F
03/05 19:32, 1F
→
03/05 19:35,
1年前
, 2F
03/05 19:35, 2F
→
03/06 08:01,
1年前
, 3F
03/06 08:01, 3F
MIS 近期熱門文章
PTT職涯區 即時熱門文章
107
261