adding Dockerfile 2, electric boogaloo

This commit is contained in:
2022-12-18 18:32:37 -03:00
parent 19586b1575
commit 9408d2efb7
5 changed files with 28 additions and 5 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;
}
}