diff --git a/hosts/pluto/configuration.nix b/hosts/pluto/configuration.nix index 961eb0b..ef10c71 100644 --- a/hosts/pluto/configuration.nix +++ b/hosts/pluto/configuration.nix @@ -85,9 +85,6 @@ security.acme = { acceptTerms = true; defaults.email = "zach@zacharymyers.com"; - certs."node.nyc.zackmyers.io" = { - email = "zach@zacharymyers.com"; - }; }; # Some programs need SUID wrappers, can be configured further or are diff --git a/hosts/pluto/services/nginx.nix b/hosts/pluto/services/nginx.nix index 68c4b7d..339eba9 100644 --- a/hosts/pluto/services/nginx.nix +++ b/hosts/pluto/services/nginx.nix @@ -3,6 +3,10 @@ enable = true; package = pkgs.nginxStable.override {openssl = pkgs.libressl;}; virtualHosts = { + "node.nyc.zackmyers.io" = { + forceSSL = true; + enableACME = true; + }; }; }; }