San3yuan | a2ee30b | 2025-06-05 21:20:17 +0800 | [diff] [blame] | 1 | server { |
2 | listen 80; | ||||
3 | server_name localhost; | ||||
4 | |||||
5 | location / { | ||||
6 | root /usr/share/nginx/html; | ||||
7 | index index.html; | ||||
8 | try_files $uri $uri/ /index.html; # 关键:支持前端路由 | ||||
9 | } | ||||
10 | |||||
11 | error_page 500 502 503 504 /50x.html; | ||||
12 | location = /50x.html { | ||||
13 | root /usr/share/nginx/html; | ||||
14 | } | ||||
15 | } |