Files
simapi-vue3-template/nginx.conf
T
2026-08-10 22:05:18 +08:00

12 lines
216 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;
}
}