1
0

Compare commits

..

No commits in common. "b62198e7a0b21a6e919b051b40afe870ee92389e" and "5b4d3bca76d688e36b099f055d3d63f85fff6dfc" have entirely different histories.

3 changed files with 1 additions and 39 deletions

View File

@ -15,7 +15,6 @@
./public.nix ./public.nix
./radicale.nix ./radicale.nix
./reichartstrasse.nix ./reichartstrasse.nix
./uptimestatus.nix
./wetter.nix ./wetter.nix
./znc.nix ./znc.nix
]; ];

View File

@ -1,37 +0,0 @@
{ pkgs, ... }:
{
users.users.uptimestatus = {
description = "Uptime Status Service";
group = "uptimestatus";
home = "/var/lib/uptimestatus/";
useDefaultShell = true;
isSystemUser = true;
};
users.groups.uptimestatus = {};
systemd.services.uptimestatus = {
wantedBy = [ "multi-user.target" ];
serviceConfig = {
RuntimeDirectory = "uptimestatus";
StateDirectory = "uptimestatus";
User = "uptimestatus";
Group = "uptimestatus";
};
environment = {
UPTIMESTATUS_SETTINGS = pkgs.writeText "wetter.cfg" ''
PROMETHEUS_API_BASE="https://prometheus.monitoring.clerie.de"
'';
};
script = "gunicorn -w 4 -b [::1]:8236 uptimestatus:app";
path = with pkgs; [ (python3.withPackages (ps: [ ps.gunicorn uptimestatus ])) ];
};
services.nginx.virtualHosts = {
"status.clerie.de" = {
enableACME = true;
forceSSL = true;
locations."/".proxyPass = "http://[::1]:8236/";
};
};
}

View File

@ -64,7 +64,7 @@ in {
WETTER_SETTINGS = "${configFile}"; WETTER_SETTINGS = "${configFile}";
}; };
script = "gunicorn -w 4 -b [::1]:8234 wetter:app"; script = "gunicorn -w 4 -b [::1]:8234 wetter:app";
path = with pkgs; [ (python3.withPackages (ps: [ ps.gunicorn wetter ])) ]; path = with pkgs; [ (python38.withPackages (ps: [ ps.gunicorn wetter ])) ];
}; };
services.nginx.virtualHosts = { services.nginx.virtualHosts = {