server/services/nginx.nix

11 lines
161 B
Nix
Raw Permalink Normal View History

2024-09-24 20:36:31 +01:00
{ config, ... }:
{
services.nginx = {
enable = true;
recommendedProxySettings = true;
mapHashBucketSize = 128;
mapHashMaxSize = 512;
};
}