18 lines
409 B
Plaintext
18 lines
409 B
Plaintext
# 供 compose 中 web 容器使用:宿主机挂载 web/dist 与 verify-root,仅提供静态与 SPA 回退
|
||
server {
|
||
listen 80;
|
||
root /usr/share/nginx/html;
|
||
index index.html;
|
||
|
||
location ~ ^/([A-Za-z0-9._-]+\.(txt|html|xml))$ {
|
||
alias /verify-root/$1;
|
||
}
|
||
|
||
location = / {
|
||
try_files /index.html =404;
|
||
}
|
||
location / {
|
||
try_files $uri $uri/ /index.html;
|
||
}
|
||
}
|