mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2025-01-24 11:39:46 -05:00
services: nginx: Re-introduce server-names-hash-bucket-size.
This was unintentionally removed in
00014f7692
.
* gnu/services/web.scm (default-nginx-config): Re-introduce processing
of server-names-hash-bucket-size option.
This commit is contained in:
parent
75a5bdbc98
commit
acb9f7849f
1 changed files with 6 additions and 0 deletions
|
@ -668,6 +668,12 @@ (define (default-nginx-config config)
|
||||||
'#$lua-package-cpath)
|
'#$lua-package-cpath)
|
||||||
";"))
|
";"))
|
||||||
"")
|
"")
|
||||||
|
(if server-names-hash-bucket-size
|
||||||
|
(string-append
|
||||||
|
" server_names_hash_bucket_size "
|
||||||
|
(number->string server-names-hash-bucket-size)
|
||||||
|
";\n")
|
||||||
|
"")
|
||||||
(if server-names-hash-bucket-max-size
|
(if server-names-hash-bucket-max-size
|
||||||
(string-append
|
(string-append
|
||||||
" server_names_hash_bucket_max_size "
|
" server_names_hash_bucket_max_size "
|
||||||
|
|
Loading…
Reference in a new issue