System Gen33 @ 2026-08-13-17:05:40 by jonas@harbor

This commit is contained in:
2026-08-13 17:05:53 +02:00
parent 87bf486ca3
commit 4e87a6b569
3 changed files with 7 additions and 3 deletions
+3 -3
View File
@@ -11,7 +11,7 @@
localPort = lib.mkOption {
type = lib.types.int;
example = 8080;
default = 39128;
default = 8088;
description = "Specify the local port wallabag server uses.";
};
instanceFQDN = lib.mkOption {
@@ -30,7 +30,7 @@
enableACME = true;
};
# Virtual host for korrosync
# Virtual host for wallabag
services.nginx.virtualHosts."${cfg.instanceFQDN}" = {
forceSSL = true;
enableACME = true;
@@ -45,7 +45,7 @@
"wallabag-images:/var/www/wallabag/web/assets/images"
];
environment = {
"SYMFONY__ENV__DOMAIN_NAME" = "https://${cfg.instanceFQDN}:${toString cfg.localPort}";
"SYMFONY__ENV__DOMAIN_NAME" = "https://${cfg.instanceFQDN}";
};
};
};