Auto-update blog content from Obsidian: 2026-02-02 17:55:37
All checks were successful
Blog Deployment / Check-Rebuild (push) Successful in 5s
Blog Deployment / Build (push) Has been skipped
Blog Deployment / Deploy-Staging (push) Successful in 9s
Blog Deployment / Test-Staging (push) Successful in 2s
Blog Deployment / Merge (push) Successful in 6s
Blog Deployment / Deploy-Production (push) Successful in 8s
Blog Deployment / Test-Production (push) Successful in 2s
Blog Deployment / Clean (push) Has been skipped
Blog Deployment / Notify (push) Successful in 2s

This commit is contained in:
Gitea Actions
2026-02-02 17:55:37 +00:00
parent 54569bc98b
commit 5213faad68

View File

@@ -41,13 +41,13 @@ It is responsible for routing HTTP and HTTPS traffic to the correct containers a
### OPNsense
OPNsense is my router, firewall and also acts as reverse proxy.
Incoming HTTPS traffic is forwarded to Traefik using the Caddy plugin with Layer 4 rules. TLS is not terminated at the firewall level. It is passed through to Traefik, which handles certificate issuance and renewal.
### Gitea
I host a Gitea server in my homelab.
Gitea is a self-hosted Git repository, I have one instance running in my homelab.
Inside Gitea, I have a private repository that contains all my Docker Compose configurations. Each application has its own folder, making the repository easy to navigate and maintain.
@@ -128,6 +128,24 @@ Most of the time, updates are straightforward:
If everything works, I continue upgrading step by step until I reach the latest available version. Once done, I commit the changes to the repository.
---
## Pros and Cons
### Pros
- Simple model, one VM, one compose file per application.
- Traefik automates TLS and routing with minimal boilerplate.
- Everything declarative enough to rebuild quickly from the repo.
- Easy to debug: logs and Compose files are local and transparent.
### Cons
- Manual updates dont scale as the app count grows.
- Single Docker VM is a single point of failure.
- Secrets in .env are convenient but basic; rotation and audit are manual.
- No builtin rollbacks beyond “change the tag back and redeploy.”
---
## Conclusion
This setup works, and it has served me well so far. It is simple and intuitive. However, it is also very manual, especially when it comes to updates and long-term maintenance.