Init Miniflux doc
This commit is contained in:
parent
be42111470
commit
0cf6d4d02a
2 changed files with 23 additions and 0 deletions
21
docs/Self-host/Miniflux.md
Normal file
21
docs/Self-host/Miniflux.md
Normal 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
|
||||
```
|
|
@ -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
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue