summary refs log tree commit diff
path: root/nixos
diff options
context:
space:
mode:
authorJames Williams <james@berserksystems.com>2023-01-30 19:08:30 +0000
committerGitHub <noreply@github.com>2023-01-30 19:08:30 +0000
commit18ab2268cd97140bd7e76d41ff38f45661ca49f4 (patch)
tree9e32f79fdd52b84fb78e249843a3c3728c5fa911 /nixos
parent5b6dcece880b1fe45532b383e1c1f9574ddac4cf (diff)
downloadnixpkgs-18ab2268cd97140bd7e76d41ff38f45661ca49f4.tar
nixpkgs-18ab2268cd97140bd7e76d41ff38f45661ca49f4.tar.gz
nixpkgs-18ab2268cd97140bd7e76d41ff38f45661ca49f4.tar.bz2
nixpkgs-18ab2268cd97140bd7e76d41ff38f45661ca49f4.tar.lz
nixpkgs-18ab2268cd97140bd7e76d41ff38f45661ca49f4.tar.xz
nixpkgs-18ab2268cd97140bd7e76d41ff38f45661ca49f4.tar.zst
nixpkgs-18ab2268cd97140bd7e76d41ff38f45661ca49f4.zip
fix: typo (enries -> entries)
Diffstat (limited to 'nixos')
-rw-r--r--nixos/modules/services/web-servers/nginx/default.nix2
1 files changed, 1 insertions, 1 deletions
diff --git a/nixos/modules/services/web-servers/nginx/default.nix b/nixos/modules/services/web-servers/nginx/default.nix
index c723b962c84..2e3a4e79e2b 100644
--- a/nixos/modules/services/web-servers/nginx/default.nix
+++ b/nixos/modules/services/web-servers/nginx/default.nix
@@ -117,7 +117,7 @@ let
       # used by most other Linux distributions by default.
       include ${pkgs.mailcap}/etc/nginx/mime.types;
       # When recommendedOptimisation is disabled nginx fails to start because the mailmap mime.types database
-      # contains 1026 enries and the default is only 1024. Setting to a higher number to remove the need to
+      # contains 1026 entries and the default is only 1024. Setting to a higher number to remove the need to
       # overwrite it because nginx does not allow duplicated settings.
       types_hash_max_size 4096;