add node.nyc

This commit is contained in:
zackartz 2024-05-03 18:27:09 -04:00
parent 1bfd2e16e9
commit 673d393b5a
No known key found for this signature in database
GPG key ID: 5B53E53A9A514DBA
2 changed files with 4 additions and 3 deletions

View file

@ -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

View file

@ -3,6 +3,10 @@
enable = true;
package = pkgs.nginxStable.override {openssl = pkgs.libressl;};
virtualHosts = {
"node.nyc.zackmyers.io" = {
forceSSL = true;
enableACME = true;
};
};
};
}