>From 237557b0e0cff28dc53f384f2297f658bff06459 Mon Sep 17 00:00:00 2001 From: Julien Lepiller Date: Tue, 13 Dec 2016 20:48:16 +0100 Subject: [PATCH 2/3] services: Fix multiple index and server name * gnu/services/web.scm (config-domain-strings, config-index-string): separate names with a space. --- 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 12a146d8b..a36352225 100644 --- a/gnu/services/web.scm +++ b/gnu/services/web.scm @@ -74,8 +74,8 @@ of domain names." (string-join (map (match-lambda - ('default "_") - ((? string? str) str)) + ('default "_ ") + ((? string? str) (string-append str " "))) names))) (define (config-index-strings names) @@ -83,7 +83,7 @@ of domain names." of index files." (string-join (map (match-lambda - ((? string? str) str)) + ((? string? str) (string-append str " "))) names))) (define (default-nginx-server-config server) -- 2.11.0