nixos/nextcloud: extend documentation for nginx configuration

Co-authored-by: Robin Gloster <mail@glob.in>
This commit is contained in:
Victor SENE 2018-10-08 11:59:47 +02:00 committed by Robin Gloster
parent 01fcaf8d29
commit 2a164f598c

View File

@ -70,7 +70,15 @@ in {
'';
};
nginx.enable = mkEnableOption "nginx vhost management";
nginx.enable = mkOption {
type = types.bool;
default = false;
description = ''
Whether to enable nginx virtual host management.
Further nginx configuration can be done by adapting <literal>services.nginx.virtualHosts.&lt;name&gt;</literal>.
See <xref linkend="opt-services.nginx.virtualHosts"/> for further information.
'';
};
webfinger = mkOption {
type = types.bool;