summaryrefslogtreecommitdiffstats
path: root/nixos/modules
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/modules
parent54a12afa54526b4c0a2346b2ff2d98990eea26b5 (diff)
parent18ab2268cd97140bd7e76d41ff38f45661ca49f4 (diff)
Merge pull request #213626 from jamesreprise/entries-typo
nginx: fix typo in commonHttpConfig
Diffstat (limited to 'nixos/modules')
-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 20750d87c3a1..1837ec936c69 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;