Compare commits

..

5 commits

View file

@ -10,15 +10,13 @@
description = "The base domain name to append to virtual domain names"; description = "The base domain name to append to virtual domain names";
}; };
config = { config.services.nginx = {
services.nginx = { enable = true;
enable = true; recommendedTlsSettings = true;
recommendedTlsSettings = true; recommendedOptimisation = true;
recommendedOptimisation = true; recommendedGzipSettings = true;
recommendedGzipSettings = true; recommendedProxySettings = true;
recommendedProxySettings = true; clientMaxBodySize = "10G";
clientMaxBodySize = "10G"; statusPage = true; # For metrics, should be accessible only from localhost
statusPage = true; # For metrics, should be accessible only from localhost
};
}; };
} }