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

16 lines
244 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;
};
2023-12-15 15:18:36 +00:00
imports = [
./laurent
./n7
];
}