>From e5e123a2ec512a7aed2f1f18ed0f7d2b86ba3a9b Mon Sep 17 00:00:00 2001 From: Julien Lepiller Date: Thu, 3 Nov 2016 18:11:43 +0100 Subject: [PATCH 2/3] service: Fix multiple 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