nginx module: fix evaluation of root location option

This commit is contained in:
Franz Pletz 2016-08-01 19:35:01 +02:00
parent 5341b8b1f8
commit c90a43f4c5

View File

@ -22,7 +22,7 @@ with lib;
root = mkOption {
type = types.nullOr types.path;
default = null;
example = /your/root/directory;
example = "/your/root/directory";
description = ''
Root directory for requests.
'';