stockholm/makefu/2configs/deployment/rss/rss.euer.krebsco.de.nix
2022-05-02 22:57:31 +02:00

31 lines
696 B
Nix

{ pkgs, lib, config, ... }:
let
fqdn = "rss.euer.krebsco.de";
ratt-path = "/var/lib/ratt/";
in {
systemd.tmpfiles.rules = ["d ${ratt-path} 0750 nginx nginx - -" ];
services.tt-rss = {
enable = true;
virtualHost = fqdn;
selfUrlPath = "https://${fqdn}";
};
services.postgresql.package = pkgs.postgresql_9_6;
state = [ config.services.postgresqlBackup.location ];
services.postgresqlBackup = {
enable = true;
databases = [ config.services.tt-rss.database.name ];
};
services.nginx.virtualHosts."${fqdn}" = {
enableACME = true;
forceSSL = true;
locations."/ratt/" = {
alias = ratt-path;
extraConfig = "autoindex on;";
};
};
}