diff options
author | makefu <github@syntax-fehler.de> | 2022-09-24 00:30:36 +0200 |
---|---|---|
committer | makefu <github@syntax-fehler.de> | 2022-09-24 00:30:36 +0200 |
commit | 1c548d482427a7984e5437aa8f4ad81a2183c175 (patch) | |
tree | e8b19ce20a78f3f733f6a975e3a9b1b8d6605da5 /makefu/2configs/deployment/rss/sofa.nix | |
parent | 71430800b2005a1a422bdbcfb83f2c54a66d9151 (diff) |
ma rss: init sofa
Diffstat (limited to 'makefu/2configs/deployment/rss/sofa.nix')
-rw-r--r-- | makefu/2configs/deployment/rss/sofa.nix | 26 |
1 files changed, 26 insertions, 0 deletions
diff --git a/makefu/2configs/deployment/rss/sofa.nix b/makefu/2configs/deployment/rss/sofa.nix new file mode 100644 index 000000000..b9180fd45 --- /dev/null +++ b/makefu/2configs/deployment/rss/sofa.nix @@ -0,0 +1,26 @@ +{ pkgs, lib, config, ... }: +let + fqdn = "rss.euer.krebsco.de"; + ratt-path = "/var/lib/ratt/"; + out-path = "${ratt-path}/sofa.xml"; +in { + systemd.tmpfiles.rules = ["d ${ratt-path} 0750 nginx nginx - -" ]; + systemd.services.run-ratt-sofa = { + enable = true; + path = with pkgs; [ ratt xmlstarlet ]; + script = builtins.readFile ./ratt-hourly.sh; + scriptArgs = "${./sofa-urls} ${out-path}"; + + preStart = "install -v -m750 ${./sofa.yml} ${ratt-path}/sofa.yml"; # ratt requires the config file in the cwd + serviceConfig.User = "nginx"; + serviceConfig.WorkingDirectory = ratt-path; + startAt = "00/3:30"; # every 3 hours, fetch latest + }; + + services.nginx.virtualHosts."${fqdn}" = { + locations."=/ratt/sofa.xml" = { + alias = out-path; + }; + }; +} + |