Add Forgejo CI and Dokploy deployment
Some checks are pending
CI / verify (push) Waiting to run

This commit is contained in:
Neeldhara Misra 2026-07-20 14:22:11 +05:30
parent 263c87d6c7
commit 3d31dc1b55
13 changed files with 110 additions and 13 deletions

22
nginx.conf Normal file
View file

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