ci: add docker support

This commit is contained in:
Cipher Vance 2025-09-14 14:24:09 -05:00
parent 223f1e8165
commit 4bd81f47dd
3 changed files with 70 additions and 0 deletions

26
nginx.conf Normal file
View file

@ -0,0 +1,26 @@
events {
worker_connections 1024;
}
http {
include /etc/nginx/mime.types;
default_type application/octet-stream;
server {
listen 80;
server_name localhost;
root /usr/share/nginx/html;
index index.html;
# Handle client-side routing
location / {
try_files $uri $uri/ /index.html;
}
# Cache static assets
location ~* \.(js|css|png|jpg|jpeg|gif|ico|svg)$ {
expires 1y;
add_header Cache-Control "public, immutable";
}
}
}