add ntfy service
This commit is contained in:
parent
f8de34054e
commit
b3960bff1c
15
netbox.nix
15
netbox.nix
|
@ -84,6 +84,14 @@
|
|||
};
|
||||
};
|
||||
|
||||
services.nginx.virtualHosts."ntfy.beepboop.systems" = {
|
||||
forceSSL = true;
|
||||
enableACME = true;
|
||||
locations."/" = {
|
||||
proxyPass = "http://127.0.0.1:3500";
|
||||
};
|
||||
};
|
||||
|
||||
services.nginx.virtualHosts."skillissue.agency" = {
|
||||
forceSSL = true;
|
||||
enableACME = true;
|
||||
|
@ -119,6 +127,13 @@
|
|||
};
|
||||
};
|
||||
|
||||
services.ntfy-sh = {
|
||||
enable = true;
|
||||
settings = {
|
||||
listen-http = ":3500";
|
||||
};
|
||||
};
|
||||
|
||||
services.vaultwarden.enable = true;
|
||||
|
||||
# Open ports in the firewall.
|
||||
|
|
Loading…
Reference in New Issue