1
0
mirror of https://github.com/kmein/niveum synced 2026-03-16 10:11:08 +01:00

feat(tt-rss): correct name, add secret to ci

This commit is contained in:
2022-11-29 13:55:56 +01:00
parent e06e7bbe0d
commit ff5bc035c0
4 changed files with 3 additions and 3 deletions

View File

@@ -0,0 +1,24 @@
{
pkgs,
lib,
...
}: let
domain = "feed.kmein.de";
in {
services.tt-rss = {
enable = true;
logDestination = "syslog";
root = "/var/lib/tt-rss";
selfUrlPath = "https://${domain}";
virtualHost = domain;
registration = {
enable = true;
maxUsers = 3;
};
};
services.nginx.virtualHosts.${domain} = {
enableACME = true;
forceSSL = true;
};
}