Compare commits

...

3 commits

2 changed files with 11 additions and 7 deletions

View file

@ -19,6 +19,9 @@ in
# tailscale # tailscale
services.tailscale.enable = true; services.tailscale.enable = true;
# fail2ban
services.fail2ban.enable = true;
# nginx reverse proxy # nginx reverse proxy
services.nginx = { services.nginx = {
enable = true; enable = true;
@ -37,12 +40,12 @@ in
proxyWebsockets = true; proxyWebsockets = true;
}; };
}; };
#virtualHosts."geokkjer.eu" = { "git.geokkjer.eu" = {
# default = true; default = true;
# forceSSL = true; forceSSL = true;
# enableACME = true; enableACME = true;
# locations."/".proxyPass = "http://127.0.0.1/"; locations."/".proxyPass = "http://apps:3000";
#}; };
}; };
}; };
# acme let's encrypt # acme let's encrypt

View file

@ -8,6 +8,7 @@
environment.systemPackages = with pkgs; [ environment.systemPackages = with pkgs; [
podman-tui podman-tui
podman-compose podman-compose
podman-desktop
]; ];
} }