Turned the miniflux setup documentation into a blog article

This commit is contained in:
Julien Dessaux 2021-10-07 18:37:31 +02:00
parent bdad32ce87
commit 4bcf732bca
3 changed files with 279 additions and 3 deletions

View file

@ -9,6 +9,6 @@ miniflux.adyxax.org is a [miniflux](https://miniflux.app/) instance that I have
## Captain's log
- 2021-10-05 : migrated this instance to myth.adyxax.org
- 2021-10-05 : migrated this instance to k3s on myth.adyxax.org
## Docs

View file

@ -40,7 +40,7 @@ Then in the psql shell :
## Kubernetes manifests in terraform
This app is part of an experiment of mine to migrate stuff from traditional hosting to kubernetes. I first wrote manifests by hand then imported them with terraform. I do not like it annd find it too complex/overkill but that is managed this way for now.
This app is part of an experiment of mine to migrate stuff from traditional hosting to kubernetes. I first wrote manifests by hand then imported them with terraform. I do not like it and find it too complex/overkill but that is managed this way for now.
### DNS CNAME
@ -266,7 +266,7 @@ resource "kubernetes_manifest" "myth-ingress-miniflux" {
### Certificate
For now I do not manage my certificates with terraform but manually. Once every three months I run :
For now I do not manage my certificates with terraform but manually. Once every two months I run :
```sh
acme.sh --config-home "$HOME/.acme.sh" --server letsencrypt --dns dns_cf --issue -d adyxax.org -d *.adyxax.org --force
kubectl -n miniflux create secret tls wildcard-adyxax-org --cert=$HOME/.acme.sh/adyxax.org/fullchain.cer \