Add docker support

This commit is contained in:
2025-11-02 20:08:31 -05:00
parent fbb210f083
commit 820a83feef
8 changed files with 35 additions and 6 deletions

7
nginx.conf Normal file
View File

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