chore: optimize web application Dockerfile and Nginx configuration

This commit is contained in:
Juan Sebastián Montoya 2025-03-10 23:26:10 -05:00
parent 18582c1fdc
commit f9f85423b4
2 changed files with 15 additions and 19 deletions

View file

@ -0,0 +1,9 @@
server {
listen 80;
root /usr/share/nginx/html;
index index.html;
location / {
try_files $uri $uri/ /index.html;
}
}