Set up PostgreSQL with daily backups

This commit is contained in:
2019-11-14 02:30:12 +01:00
parent 9b0c99672a
commit b15da3a2e5
2 changed files with 29 additions and 12 deletions

View File

@@ -7,6 +7,7 @@
php
postgresql_11
libressl
wallabag
];
services.nginx = {
@@ -73,9 +74,20 @@
};
};
# Generate dhparams
security.dhparams = {
enable = true;
params = { nginx.bits = 2048; };
};
# Enable PostgreSQL with daily backup
services.postgresql.enable = true;
services.postgresqlBackup = {
enable = true;
backupAll = true;
location = "/vault/backups/zion/databases";
startAt = "*-*-* 05:15:00";
};
}