diff options
author | Oleg Pykhalov <go.wigust@gmail.com> | 2017-09-23 03:27:49 +0300 |
---|---|---|
committer | Julien Lepiller <julien@lepiller.eu> | 2017-09-28 20:37:40 +0200 |
commit | 4d14808af4c01b4fb0a4564584aa68f0e53c4ef4 (patch) | |
tree | 5c361a387338425dd6ca3c2b1a4ddfd5d4e0c441 /doc | |
parent | 80c3f4d6c04f7112afab5ce309c8b73d9789c79a (diff) | |
download | patches-4d14808af4c01b4fb0a4564584aa68f0e53c4ef4.tar patches-4d14808af4c01b4fb0a4564584aa68f0e53c4ef4.tar.gz |
services: web: Add try-files for the nginx-service-type.
* gnu/services/web.scm (<nginx-server-configuration>): Add
nginx-server-configuration-try-files.
(emit-nginx-server-config): Use it.
* doc/guix.texi (Web Services): Document it.
Diffstat (limited to 'doc')
-rw-r--r-- | doc/guix.texi | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/doc/guix.texi b/doc/guix.texi index dd0a46a638..1b329d255a 100644 --- a/doc/guix.texi +++ b/doc/guix.texi @@ -14263,7 +14263,8 @@ blocks, as in this example: (https-port #f) (ssl-certificate #f) (ssl-certificate-key #f) - (root "/srv/http/extra-website")))) + (root "/srv/http/extra-website") + (try-files (list "$uri" "$uri/index.html"))))) @end example @end deffn @@ -14394,6 +14395,10 @@ server block. Index files to look for when clients ask for a directory. If it cannot be found, Nginx will send the list of files in the directory. +@item @code{try-files} (default: @code{'()}) +A list of files whose existence is checked in the specified order. +@code{nginx} will use the first file it finds to process the request. + @item @code{ssl-certificate} (default: @code{"/etc/nginx/cert.pem"}) Where to find the certificate for secure connections. Set it to @code{#f} if you don't have a certificate or you don't want to use HTTPS. |