fix nextcloud to properly disable debug
This commit is contained in:
parent
4533763553
commit
4da060986a
1 changed files with 2 additions and 3 deletions
|
@ -104,9 +104,8 @@ in
|
|||
"trusted_domains" = [ fqdn ];
|
||||
"overwriteprotocol" = "https"; # Needed if behind a reverse_proxy
|
||||
"overwritecondaddr" = ""; # We need to set it to empty otherwise overwriteprotocol does not work.
|
||||
} // lib.optionalAttrs cfg.debug {
|
||||
"debug" = true;
|
||||
"filelocking.debug" = true;
|
||||
"debug" = cfg.debug;
|
||||
"filelocking.debug" = cfg.debug;
|
||||
};
|
||||
|
||||
phpOptions = {
|
||||
|
|
Loading…
Reference in a new issue