From 23e5af1ad49bfa39458bb87635ff28823270988a Mon Sep 17 00:00:00 2001 From: Bill Ewanick Date: Sat, 23 Sep 2023 13:46:29 -0400 Subject: [PATCH] Re-arrange cruft --- nixos-apps/default.nix | 2 ++ nixos-apps/jitsi.crueltysquad.com.nix | 14 -------------- 2 files changed, 2 insertions(+), 14 deletions(-) diff --git a/nixos-apps/default.nix b/nixos-apps/default.nix index fe1eb6f..d2929eb 100644 --- a/nixos-apps/default.nix +++ b/nixos-apps/default.nix @@ -14,4 +14,6 @@ security.acme.defaults.email = "admin@cutesealfanpage.love"; # uncomment this to use the staging server # security.acme.server = "https://acme-staging-v02.api.letsencrypt.org/directory"; + + networking.firewall.allowedTCPPorts = [ 80 443 ]; } diff --git a/nixos-apps/jitsi.crueltysquad.com.nix b/nixos-apps/jitsi.crueltysquad.com.nix index 18164ac..ca6e9d3 100644 --- a/nixos-apps/jitsi.crueltysquad.com.nix +++ b/nixos-apps/jitsi.crueltysquad.com.nix @@ -19,18 +19,4 @@ services.jitsi-videobridge.enable = false; services.jitsi-videobridge.openFirewall = false; - networking.firewall.allowedTCPPorts = [ 80 443 ]; - # security.acme.email = "me@example.com"; - # security.acme.acceptTerms = true; - - # services.caddy = { - # enable = true; - # virtualHosts = { - # "git.ewanick.com" = { - # extraConfig = '' - # reverse_proxy localhost:3000 - # ''; - # }; - # }; - # }; }