1
0
Fork 0

fix nextcloud to properly disable debug

This commit is contained in:
ibizaman 2023-11-24 02:16:36 -08:00
parent 4533763553
commit 4da060986a

View file

@ -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 = {