22 lines
467 B
Nginx Configuration File
22 lines
467 B
Nginx Configuration File
server {
|
|
listen 80;
|
|
server_name localhost;
|
|
|
|
location / {
|
|
root /usr/share/nginx/html;
|
|
index index.html index.htm;
|
|
try_files $uri $uri/ /index.html; # 关键配置
|
|
}
|
|
|
|
# 可选:健康检查路径(如果有)
|
|
location /health {
|
|
access_log off;
|
|
return 200 'healthy';
|
|
}
|
|
|
|
error_page 500 502 503 504 /50x.html;
|
|
location = /50x.html {
|
|
root /usr/share/nginx/html;
|
|
}
|
|
}
|