feat: Add Dockerfile, Nginx configuration, and GitHub Actions workflow for continuous deployment.

This commit is contained in:
2026-01-03 17:04:43 -06:00
parent aaa95be433
commit 9cbb405ba0
3 changed files with 109 additions and 0 deletions

14
nginx.conf Normal file
View File

@@ -0,0 +1,14 @@
server {
listen 80;
location / {
root /usr/share/nginx/html;
index index.html index.htm;
try_files $uri $uri/ /index.html;
}
error_page 500 502 503 504 /50x.html;
location = /50x.html {
root /usr/share/nginx/html;
}
}