nixos/spec/web/nginx.nix

42 lines
857 B
Nix

{ pkgs
, ...}: {
services.nginx = {
enable = true;
# enable all recommended settings
recommendedTlsSettings = true;
recommendedOptimisation = true;
recommendedGzipSettings = true;
recommendedProxySettings = true;
virtualHosts = {
"_" = {
rejectSSL = true;
extraConfig = "return 444;";
};
"514fpv.one" = {
root = pkgs.callPackage ./site { };
forceSSL = true;
enableACME = true;
};
"www.514fpv.one" = {
globalRedirect = "514fpv.one";
enableACME = true;
};
"uptime.514fpv.one" = {
locations."/" = {
proxyPass = "http://127.0.0.1:4000";
proxyWebsockets = true;
};
forceSSL = true;
enableACME = true;
};
};
};
networking.firewall.allowedTCPPorts = [ 80 443 ];
}