Add docker-compose and nginx config

This commit is contained in:
Hermes Cron Job
2026-05-16 18:59:13 +00:00
parent 417f3311ef
commit f7cbc73a54
2 changed files with 30 additions and 0 deletions
+12
View File
@@ -0,0 +1,12 @@
server {
listen 80;
server_name localhost;
root /usr/share/nginx/html;
index index.html;
location / {
try_files $uri $uri/ /index.html;
}
error_page 404 /index.html;
}