feat: backup configs

This commit is contained in:
2025-01-28 17:52:58 -08:00
parent 5e5cce5470
commit 600cc2b8e3
7 changed files with 711 additions and 14 deletions

14
configs/gitea.conf Normal file
View File

@ -0,0 +1,14 @@
server {
listen 443 ssl;
server_name git.nhcarrigan.com;
ssl_certificate /etc/letsencrypt/live/git.nhcarrigan.com/fullchain.pem;
ssl_certificate_key /etc/letsencrypt/live/git.nhcarrigan.com/privkey.pem;
client_max_body_size 100M;
location / {
proxy_set_header Host $host;
proxy_pass http://127.0.0.1:3000;
proxy_redirect off;
}
}