infrastructure/hosts/cesium/services/nginx/default.nix

19 lines
304 B
Nix
Raw Normal View History

2023-12-15 15:18:36 +00:00
{...}: {
services.nginx = {
enable = true;
recommendedTlsSettings = true;
recommendedOptimisation = true;
recommendedGzipSettings = true;
recommendedProxySettings = true;
# disable max body size
# clientMaxBodySize = "0";
};
2023-12-15 15:18:36 +00:00
imports = [
./laurent
./n7
];
}