summaryrefslogtreecommitdiff
path: root/doc
diff options
context:
space:
mode:
authorChristopher Baines <mail@cbaines.net>2017-11-25 11:57:37 +0000
committerChristopher Baines <mail@cbaines.net>2017-12-11 20:57:34 +0000
commit2881f85220c05809527d2f2a8b8d71b7a67bc604 (patch)
tree3725f40a1bebb942482c8594f8271d4a88c0e5bb /doc
parentc48aa70a9aa68ac6f365663044357be77eb9e36a (diff)
downloadpatches-2881f85220c05809527d2f2a8b8d71b7a67bc604.tar
patches-2881f85220c05809527d2f2a8b8d71b7a67bc604.tar.gz
services: web: Add support for configuring the nginx server names hash.
The nginx service can fail to start if the server names hash bucket size is too small, which can happen on some systems, and when using QEMU, depending on the CPU. * gnu/services/web.scm (<nginx-configuration>): Add server-names-hash-bucket-size and server-names-hash-bucket-max-size. (default-nginx-config): Add support for the new hash bucket size parameters. (nginx-service, nginx-activation): Pass the new hash bucket size parameters through to the default-nginx-config procedure. * doc/guix.texi (Web Services): Document the new hash bucket size parameters.
Diffstat (limited to 'doc')
-rw-r--r--doc/guix.texi7
1 files changed, 7 insertions, 0 deletions
diff --git a/doc/guix.texi b/doc/guix.texi
index 35f895bb4f..592cae5d59 100644
--- a/doc/guix.texi
+++ b/doc/guix.texi
@@ -14913,6 +14913,13 @@ This can be useful if you have an existing configuration file, or it's
not possible to do what is required through the other parts of the
nginx-configuration record.
+@item @code{server-names-hash-bucket-size} (default: @code{#f})
+Bucket size for the server names hash tables, defaults to @code{#f} to
+use the size of the processors cache line.
+
+@item @code{server-names-hash-bucket-max-size} (default: @code{#f})
+Maximum bucket size for the server names hash tables.
+
@end table
@end deffn