lab-infra/machines/homebox01/nginx.nix

11 lines
225 B
Nix
Raw Normal View History

2024-12-05 10:57:36 +01:00
{
services.nginx = {
enable = true;
recommendedTlsSettings = true;
recommendedOptimisation = true;
recommendedGzipSettings = true;
recommendedProxySettings = true;
clientMaxBodySize = "500m";
};
}