Add Dockerfile, nginx config, and Gitea Actions CI workflow
Some checks failed
Build and Push Docker Image / build-and-push (push) Failing after 1m18s

This commit is contained in:
Lennie S.
2026-04-12 00:29:26 +00:00
parent 026652739d
commit 20baf040fb
4 changed files with 85 additions and 0 deletions

16
docker/nginx.conf Normal file
View File

@@ -0,0 +1,16 @@
server {
listen 80;
server_name _;
root /usr/share/nginx/html;
index index.html;
location / {
try_files $uri $uri/ /index.html;
}
location ~* \.(js|css|png|jpg|jpeg|gif|ico|svg|woff|woff2)$ {
expires 1y;
add_header Cache-Control "public, immutable";
}
}