Files
timeline-frontend/nginx.conf
jiangh277 5889bf4333
Some checks failed
test/timeline-frontend/pipeline/head There was a failure building this commit
jenkins support
2025-12-26 21:02:15 +08:00

25 lines
533 B
Nginx Configuration File

events {
worker_connections 1024;
}
http {
include /etc/nginx/mime.types;
default_type application/octet-stream;
server {
listen 80;
server_name localhost;
location / {
root /usr/share/nginx/html;
index index.html index.htm;
try_files $uri $uri/ /index.html; # 用于处理 SPA 路由
}
error_page 500 502 503 504 /50x.html;
location = /50x.html {
root /usr/share/nginx/html;
}
}
}