summary refs log tree commit diff
path: root/nixos/tests/common
diff options
context:
space:
mode:
authorxeji <36407913+xeji@users.noreply.github.com>2018-05-13 19:59:59 +0200
committerGitHub <noreply@github.com>2018-05-13 19:59:59 +0200
commit642bed4b3e0d1b0a8f8d9bfea8d5c99cf7941c2f (patch)
tree7e750fb9106caa5687060b8ac045282e9f6683cd /nixos/tests/common
parent66d204188b21e3156907e66165c2898076145bd2 (diff)
downloadnixpkgs-642bed4b3e0d1b0a8f8d9bfea8d5c99cf7941c2f.tar
nixpkgs-642bed4b3e0d1b0a8f8d9bfea8d5c99cf7941c2f.tar.gz
nixpkgs-642bed4b3e0d1b0a8f8d9bfea8d5c99cf7941c2f.tar.bz2
nixpkgs-642bed4b3e0d1b0a8f8d9bfea8d5c99cf7941c2f.tar.lz
nixpkgs-642bed4b3e0d1b0a8f8d9bfea8d5c99cf7941c2f.tar.xz
nixpkgs-642bed4b3e0d1b0a8f8d9bfea8d5c99cf7941c2f.tar.zst
nixpkgs-642bed4b3e0d1b0a8f8d9bfea8d5c99cf7941c2f.zip
nixos/tests/acme: fix on i686, improve timing (#40410)
... to prevent non-deterministic failures
Diffstat (limited to 'nixos/tests/common')
-rw-r--r--nixos/tests/common/letsencrypt.nix4
1 files changed, 4 insertions, 0 deletions
diff --git a/nixos/tests/common/letsencrypt.nix b/nixos/tests/common/letsencrypt.nix
index 10cde45d18a..7c6b3b29e36 100644
--- a/nixos/tests/common/letsencrypt.nix
+++ b/nixos/tests/common/letsencrypt.nix
@@ -386,6 +386,10 @@ in {
 
     services.nginx.enable = true;
     services.nginx.recommendedProxySettings = true;
+    # This fixes the test on i686
+    services.nginx.commonHttpConfig = ''
+      server_names_hash_bucket_size 64;
+    '';
     services.nginx.virtualHosts.${wfeDomain} = {
       onlySSL = true;
       enableACME = false;