config/systems/x86_64-linux/pluto/services/nginx.nix
2024-05-23 20:26:30 +00:00

13 lines
290 B
Nix

{pkgs, ...}: {
services.nginx = {
enable = true;
package = pkgs.nginxStable.override {openssl = pkgs.libressl;};
recommendedProxySettings = true;
virtualHosts = {
"node.nyc.zackmyers.io" = {
forceSSL = true;
enableACME = true;
};
};
};
}