Updated dockerfile

This commit is contained in:
2024-05-16 14:37:21 -04:00
parent d48caeae63
commit 0a1b755253
3 changed files with 39 additions and 5 deletions

9
nginx/default.conf Normal file
View File

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