mirror of
https://git.sr.ht/~rouven/nixos-config
synced 2024-11-15 21:33:11 +01:00
19 lines
303 B
Nix
19 lines
303 B
Nix
|
{ ... }:
|
||
|
let
|
||
|
domain = "monitoring.rfive.de";
|
||
|
in
|
||
|
{
|
||
|
services.uptime-kuma = {
|
||
|
enable = true;
|
||
|
};
|
||
|
services.nginx.virtualHosts."${domain}" = {
|
||
|
enableACME = true;
|
||
|
forceSSL = true;
|
||
|
locations."/" = {
|
||
|
proxyPass = "http://127.0.0.1:3001";
|
||
|
proxyWebsockets = true;
|
||
|
};
|
||
|
};
|
||
|
|
||
|
}
|