Compare commits
No commits in common. "b62198e7a0b21a6e919b051b40afe870ee92389e" and "5b4d3bca76d688e36b099f055d3d63f85fff6dfc" have entirely different histories.
b62198e7a0
...
5b4d3bca76
@ -15,7 +15,6 @@
|
||||
./public.nix
|
||||
./radicale.nix
|
||||
./reichartstrasse.nix
|
||||
./uptimestatus.nix
|
||||
./wetter.nix
|
||||
./znc.nix
|
||||
];
|
||||
|
@ -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/";
|
||||
};
|
||||
};
|
||||
}
|
@ -64,7 +64,7 @@ in {
|
||||
WETTER_SETTINGS = "${configFile}";
|
||||
};
|
||||
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 = {
|
||||
|
Loading…
Reference in New Issue
Block a user