diff options
Diffstat (limited to 'gnu/services')
-rw-r--r-- | gnu/services/version-control.scm | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gnu/services/version-control.scm b/gnu/services/version-control.scm index 14ff0a59a6..96cc991438 100644 --- a/gnu/services/version-control.scm +++ b/gnu/services/version-control.scm @@ -218,7 +218,7 @@ access to exported repositories under @file{/srv/git}." (($ <git-http-configuration> package git-root export-all? uri-path fcgiwrap-socket) (nginx-location-configuration - (uri (string-append "~ /" (string-trim-both uri-path #\/) "(/.*)")) + (uri (string-append "~ " (string-trim-both uri-path #\/) "(/.*)")) (body (list (list "fastcgi_pass " fcgiwrap-socket ";") |