nixos/spec/focus/nginx.nix

28 lines
509 B
Nix
Raw Permalink Normal View History

2024-01-27 09:56:16 +08:00
{
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 = ".sf.514fpv.io";
extraConfig = "return 444;";
};
};
};
2025-01-13 11:52:09 +08:00
networking.firewall.allowedTCPPorts = [
80
443
];
2024-01-27 09:56:16 +08:00
}