summary refs log tree commit diff
path: root/nixos
diff options
context:
space:
mode:
authorNick Cao <nickcao@nichi.co>2023-02-02 09:12:32 +0800
committerGitHub <noreply@github.com>2023-02-02 09:12:32 +0800
commit4840ca34f4549cd5def4a76876e35e0e7d147fa4 (patch)
tree888b3dd2c304b81d6b3a0755ff5d6119775cdeec /nixos
parent54a12afa54526b4c0a2346b2ff2d98990eea26b5 (diff)
parent18ab2268cd97140bd7e76d41ff38f45661ca49f4 (diff)
downloadnixpkgs-4840ca34f4549cd5def4a76876e35e0e7d147fa4.tar
nixpkgs-4840ca34f4549cd5def4a76876e35e0e7d147fa4.tar.gz
nixpkgs-4840ca34f4549cd5def4a76876e35e0e7d147fa4.tar.bz2
nixpkgs-4840ca34f4549cd5def4a76876e35e0e7d147fa4.tar.lz
nixpkgs-4840ca34f4549cd5def4a76876e35e0e7d147fa4.tar.xz
nixpkgs-4840ca34f4549cd5def4a76876e35e0e7d147fa4.tar.zst
nixpkgs-4840ca34f4549cd5def4a76876e35e0e7d147fa4.zip
Merge pull request #213626 from jamesreprise/entries-typo
nginx: fix typo in commonHttpConfig
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 20750d87c3a..1837ec936c6 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;