16 lines
244 B
Nix
16 lines
244 B
Nix
{...}: {
|
|
services.nginx = {
|
|
enable = true;
|
|
|
|
recommendedTlsSettings = true;
|
|
recommendedOptimisation = true;
|
|
recommendedGzipSettings = true;
|
|
recommendedProxySettings = true;
|
|
};
|
|
|
|
imports = [
|
|
./laurent
|
|
./n7
|
|
];
|
|
}
|