Compare commits

..

5 commits

View file

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