>From 3f6ecc72032affa3e6ba1e704f13ac6a20b4f4ed Mon Sep 17 00:00:00 2001 From: Julien Lepiller Date: Sun, 6 Nov 2016 10:52:34 +0100 Subject: [PATCH 2/3] service: Fix multiple nginx index and server name * gnu/services/web.scm (config-index strings and config-vhost-strings): Add a space between entries. --- gnu/services/web.scm | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/gnu/services/web.scm b/gnu/services/web.scm index 50f83f3..e36d284 100644 --- a/gnu/services/web.scm +++ b/gnu/services/web.scm @@ -77,8 +77,8 @@ of domain names." (string-concatenate (map (match-lambda - ('default "_") - ((? string? str) str)) + ('default "_ ") + ((? string? str) (string-append str " "))) names))) (define (config-index-strings names) @@ -86,7 +86,7 @@ of domain names." of index files." (string-concatenate (map (match-lambda - ((? string? str) str)) + ((? string? str) (string-append str " "))) names))) (define (default-nginx-vhost-config vhost) -- 2.10.2