feat(#4): Add docker support

This commit is contained in:
Josh Creek
2026-02-22 16:51:22 +00:00
parent 584c3f5803
commit e2052082e0
11 changed files with 217 additions and 499 deletions
+16
View File
@@ -0,0 +1,16 @@
server {
listen 80;
server_name _;
root /usr/share/nginx/html;
index index.html;
location /data/ {
try_files $uri =404;
add_header Cache-Control "no-cache";
}
location / {
try_files $uri $uri/ /index.html;
}
}