hamstr/nginx/conf.d/default.conf
2022-05-23 21:13:09 -05:00

10 lines
119 B
Plaintext

server {
listen 8000;
root /app;
location / {
index index.html;
try_files $uri $uri/ /index.html;
}
}