infrastructure/nixos-modules/qois/nginx/default.nix
Fabian Hauser df41008026
Some checks failed
CI / build (push) Has been cancelled
Refactor attic configuration as module
2024-12-08 17:45:54 +02:00

15 lines
298 B
Nix

{
...
}:
{
config.services.nginx = {
recommendedTlsSettings = true;
recommendedOptimisation = true;
recommendedProxySettings = true;
recommendedGzipSettings = true;
recommendedBrotliSettings = true;
logError = "stderr warn";
proxyResolveWhileRunning = true;
};
}