🐳 Set up Docker config for new-frontend (#564)

This commit is contained in:
Alejandra
2023-12-04 17:09:14 -05:00
committed by GitHub
parent 229191061a
commit 8155761cf4
7 changed files with 67 additions and 1 deletions

View File

@@ -0,0 +1,11 @@
server {
listen 80;
location / {
root /usr/share/nginx/html;
index index.html index.htm;
try_files $uri $uri/ /index.html =404;
}
include /etc/nginx/extra-conf.d/*.conf;
}