nixos/spec/eientei/nginx.nix

25 lines
496 B
Nix
Raw Normal View History

{
services.nginx = {
enable = true;
# enable all recommended settings
recommendedTlsSettings = true;
recommendedOptimisation = true;
recommendedGzipSettings = true;
recommendedProxySettings = true;
# set a reasonable default
clientMaxBodySize = "64m";
virtualHosts = {
"_" = {
addSSL = true;
useACMEHost = ".514fpv.io";
extraConfig = "return 444;";
};
};
};
networking.firewall.allowedTCPPorts = [ 80 443 ];
}