dockerize

This commit is contained in:
2026-04-09 17:33:38 -05:00
parent b266a641e4
commit 6d3eefbeca
3 changed files with 58 additions and 0 deletions

9
nginx.conf Normal file
View File

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