diff --git a/proxy/configuration.nix b/proxy/configuration.nix index c33ae22..a17de8c 100644 --- a/proxy/configuration.nix +++ b/proxy/configuration.nix @@ -18,10 +18,7 @@ in # tailscale services.tailscale.enable = true; - - # fail2ban - services.fail2ban.enable = true; - + # nginx reverse proxy services.nginx = { enable = true; @@ -40,12 +37,12 @@ in proxyWebsockets = true; }; }; - "git.geokkjer.eu" = { - default = true; - forceSSL = true; - enableACME = true; - locations."/".proxyPass = "http://apps:3000"; - }; + #virtualHosts."geokkjer.eu" = { + # default = true; + # forceSSL = true; + # enableACME = true; + # locations."/".proxyPass = "http://127.0.0.1/"; + #}; }; }; # acme let's encrypt diff --git a/workstation/podman.nix b/workstation/podman.nix index 1e74032..44f2f43 100644 --- a/workstation/podman.nix +++ b/workstation/podman.nix @@ -8,7 +8,6 @@ environment.systemPackages = with pkgs; [ podman-tui podman-compose - podman-desktop ]; }