infrastructure/hosts/cesium/services/nginx/default.nix
2024-01-12 17:02:47 +01:00

19 lines
304 B
Nix

{...}: {
services.nginx = {
enable = true;
recommendedTlsSettings = true;
recommendedOptimisation = true;
recommendedGzipSettings = true;
recommendedProxySettings = true;
# disable max body size
# clientMaxBodySize = "0";
};
imports = [
./laurent
./n7
];
}