2026-04-24 10:42:11 +08:00
|
|
|
server {
|
|
|
|
|
listen 80;
|
|
|
|
|
server_name _;
|
|
|
|
|
|
|
|
|
|
root /usr/share/nginx/html/tenant;
|
|
|
|
|
index index.html;
|
|
|
|
|
|
|
|
|
|
location / {
|
|
|
|
|
try_files $uri $uri/ /index.html;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
location /ops/ {
|
|
|
|
|
alias /usr/share/nginx/html/ops/;
|
|
|
|
|
try_files $uri $uri/ /ops/index.html;
|
|
|
|
|
}
|
2026-04-24 15:35:24 +08:00
|
|
|
|
|
|
|
|
location /docs/ {
|
|
|
|
|
alias /usr/share/nginx/html/docs/;
|
|
|
|
|
try_files $uri $uri/ /docs/index.html;
|
|
|
|
|
}
|
2026-04-24 10:42:11 +08:00
|
|
|
}
|