10 lines
203 B
Nix
10 lines
203 B
Nix
{ pkgs, lib, config, ... }:
|
|
|
|
{
|
|
services.nginx = {
|
|
recommendedProxySettings = true;
|
|
recommendedOptimisation = true;
|
|
recommendedGzipSettings = true;
|
|
recommendedTlsSettings = true;
|
|
};
|
|
}
|