nixos/roundcube: fix wrong error log location

'stderr' here means log to a file named 'stderr', and thus /stderr is
being created. This probably is intended to be /dev/stderr.
This commit is contained in:
Gary Guo
2025-11-28 16:22:18 +00:00
parent 06f4ba94da
commit 5e58fb0ba5
+1 -1
View File
@@ -244,7 +244,7 @@ in
services.phpfpm.pools.roundcube = {
user = if localDB then user else "nginx";
phpOptions = ''
error_log = 'stderr'
error_log = '/dev/stderr'
log_errors = on
post_max_size = ${cfg.maxAttachmentSize}
upload_max_filesize = ${cfg.maxAttachmentSize}