1
0
Fork 0

Fix miniflux config

This commit is contained in:
Malte 2023-01-30 01:05:32 +01:00
parent b60cfb83ca
commit 22b3b0201c
2 changed files with 5 additions and 5 deletions

View file

@ -28,6 +28,7 @@ in {
../../roles/firefox-sync.nix ../../roles/firefox-sync.nix
../../roles/goatcounter.nix ../../roles/goatcounter.nix
../../roles/nixpkgs-bot.nix ../../roles/nixpkgs-bot.nix
../../roles/miniflux.nix
(import ../../roles/monitoring/folder-size-exporter.nix { (import ../../roles/monitoring/folder-size-exporter.nix {
folders = [ folders = [
"/" "/"

View file

@ -7,11 +7,10 @@
enable = true; enable = true;
adminCredentialsFile = pkgs.privatePath "miniflux-admin-credentials"; adminCredentialsFile = pkgs.privatePath "miniflux-admin-credentials";
config = { config = {
DEBUG = true; DEBUG = "1";
LOG_DATE_TIME = true; SCHEDULER_SERVICE = "0";
SCHEDULER_SERVICE = false; BATCH_SIZE = "1000";
BATCH_SIZE = 1000; LISTEN_ADDR = "[${config.m-0.hosts.vpn.hera}]:8100";
LISTEN_ADDRESS = "${config.m-0.hosts.vpn.hera}:8100";
}; };
}; };
} }