11 lines
161 B
Nix
Executable File
11 lines
161 B
Nix
Executable File
{ config, ... }:
|
|
|
|
{
|
|
services.nginx = {
|
|
enable = true;
|
|
recommendedProxySettings = true;
|
|
mapHashBucketSize = 128;
|
|
mapHashMaxSize = 512;
|
|
};
|
|
}
|