From c90a43f4c53dcc56c556832e5d2d81772f473970 Mon Sep 17 00:00:00 2001 From: Franz Pletz Date: Mon, 1 Aug 2016 19:35:01 +0200 Subject: [PATCH] nginx module: fix evaluation of root location option --- nixos/modules/services/web-servers/nginx/location-options.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/nixos/modules/services/web-servers/nginx/location-options.nix b/nixos/modules/services/web-servers/nginx/location-options.nix index ce3462bed0a4..8aaa3e96f800 100644 --- a/nixos/modules/services/web-servers/nginx/location-options.nix +++ b/nixos/modules/services/web-servers/nginx/location-options.nix @@ -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. '';