hamstr/nginx/conf.d/default.conf
Ricardo Arturo Cabral Mejia c7b626bef0
feat: add Dockerfile
2022-01-22 16:54:39 +00:00

10 lines
117 B
Plaintext

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