Init Miniflux doc

This commit is contained in:
Benoit 2025-05-27 20:34:37 +09:00
parent be42111470
commit 0cf6d4d02a
Signed by: Benoit
SSH key fingerprint: SHA256:kFsX94Kq6z/6CY0dX+7/FpAeJC0QlMhJVY+B7NYrOmA
2 changed files with 23 additions and 0 deletions

View file

@ -0,0 +1,21 @@
# Mini-flux
## Backup
```shell title="Copy config file"
cp /etc/miniflux.conf /var/backups/miniflux/
```
```shell title="PG Dump"
sudo -u postgres pg_dumpall --clean > /var/backups/miniflux/db.sql
```
## Restore
```shell title="Copy config file"
cp /var/backups/miniflux/miniflux.conf /etc/
```
```shell title="PG Restore"
sudo -u postgres psql < /var/backups/miniflux/db.sql
```

View file

@ -85,6 +85,8 @@ extra:
nav:
- Homepage:
- index.md
- Self-host:
- Miniflux: Self-host/Miniflux.md
- Howtos:
- Howto CentOS: Howtos/HowtoCentOS.md
- Howto Crack WPA: Howtos/HowtoCrackWPA.md