infrastructure/nixos-modules/qois/nginx/default.nix

16 lines
298 B
Nix
Raw Permalink Normal View History

2024-10-02 15:52:04 +02:00
{
...
}:
{
2024-12-08 16:45:54 +01:00
config.services.nginx = {
2024-10-02 15:52:04 +02:00
recommendedTlsSettings = true;
recommendedOptimisation = true;
recommendedProxySettings = true;
recommendedGzipSettings = true;
recommendedBrotliSettings = true;
logError = "stderr warn";
proxyResolveWhileRunning = true;
};
}