hamstr/nginx/conf.d/default.conf

10 lines
119 B
Plaintext
Raw Normal View History

2022-01-22 16:54:39 +00:00
server {
2022-05-24 02:13:09 +00:00
listen 8000;
2022-01-22 16:54:39 +00:00
root /app;
location / {
index index.html;
try_files $uri $uri/ /index.html;
}
}