12 lines
253 B
Nix
12 lines
253 B
Nix
{pkgs, ...}: {
|
|
services.nginx = {
|
|
enable = true;
|
|
package = pkgs.nginxStable.override {openssl = pkgs.libressl;};
|
|
virtualHosts = {
|
|
"node.nyc.zackmyers.io" = {
|
|
forceSSL = true;
|
|
enableACME = true;
|
|
};
|
|
};
|
|
};
|
|
}
|