diff options
author | Igor Pashev <pashev.igor@gmail.com> | 2016-10-16 23:27:56 +0300 |
---|---|---|
committer | Igor Pashev <pashev.igor@gmail.com> | 2016-10-16 23:27:56 +0300 |
commit | cef6dce049ccccc8025bf41423f081a0448d06ec (patch) | |
tree | d71633b7dd95acc1a2efe09ecf6ca3b968a5b2fd | |
parent | 9a53cc7130bb7086fa64ee9b6c9b504a1eee3032 (diff) | |
download | nixsap-cef6dce049ccccc8025bf41423f081a0448d06ec.tar.gz |
nginx: typo
-rw-r--r-- | modules/apps/nginx.nix | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/apps/nginx.nix b/modules/apps/nginx.nix index 3765d67..96fd4a9 100644 --- a/modules/apps/nginx.nix +++ b/modules/apps/nginx.nix @@ -66,7 +66,7 @@ let fastcgi_param HTTP_PROXY ""; proxy_set_header Proxy ""; - ${concatMapStrings (s: "include ${s}\n;") (mapAttrsToList mkServer cfg.http.servers)} + ${concatMapStrings (s: "include ${s};\n") (mapAttrsToList mkServer cfg.http.servers)} } ''; |