Nextcloud version: 27.0.1
Operating system and version : Debian
Apache or nginx version : nginx -v
PHP version : 8.2
The issue you are facing:
since updating to nc27 performance has dropped significantly and im getting a few new errors. im using php FPM and it ran great before.
The output of your Apache/nginx/system log in /var/log/____
:
2023/08/05 10:34:49 [error] 1741121#1741121: *67364 FastCGI sent in stderr: "Passing INI directive through FastCGI: only classic entries are allowed" while reading response header from upstream, client: 10.71.1.160, server: nextcloud.xxx.com, request: "GET /apps/files/ajax/getstoragestats?dir=%2FPhotos HTTP/2.0", upstream: "fastcgi://127.0.0.1:17005", host: "nextcloud.xxx.com"
i think that new error is telling but a quick google was not helpful
config just in case:
<?php
$CONFIG = array (
'instanceid' => 'xxx',
'passwordsalt' => 'xxx',
'secret' => 'xxx',
'trusted_domains' =>
array (
0 => '10.71.1.8',
1 => 'nextcloud.xxx.com',
),
'datadirectory' => '/nextcloud-data',
'dbtype' => 'mysql',
'version' => '27.0.1.2',
'overwrite.cli.url' => 'https://nextcloud.xxx.com',
'dbname' => 'ncdb',
'dbhost' => 'localhost',
'dbport' => '',
'dbtableprefix' => 'oc_',
'mysql.utf8mb4' => true,
'dbuser' => 'ncuser',
'dbpassword' => 'xxx',
'installed' => true,
'mail_smtpmode' => 'smtp',
'mail_smtphost' => 'mail1.xxx.com',
'mail_from_address' => 'nextcloud',
'mail_domain' => 'xxx.com',
'maintenance' => false,
'filesystem_check_changes' => 1,
'memcache.locking' => '\\OC\\Memcache\\Redis',
'memcache.distributed' => '\\OC\\Memcache\\Redis',
'memcache.local' => '\\OC\\Memcache\\Redis',
'filelocking.enabled' => true,
'default_phone_region' => 'US',
'theme' => '',
'loglevel' => 2,
'preview_libreoffice_path' => '/ usr / bin / libreoffice',
'redis' =>
array (
'host' => 'localhost',
'port' => 6379,
'timeout' => 0.0,
),
'enable_previews' => true,
'enabledPreviewProviders' =>
array (
0 => 'OC\\Preview\\Movie',
1 => 'OC\\Preview\\PNG',
2 => 'OC\\Preview\\JPEG',
3 => 'OC\\Preview\\GIF',
4 => 'OC\\Preview\\BMP',
5 => 'OC\\Preview\\XBitmap',
6 => 'OC\\Preview\\MP3',
7 => 'OC\\Preview\\MP4',
8 => 'OC\\Preview\\TXT',
9 => 'OC\\Preview\\MarkDown',
10 => 'OC\\Preview\\PDF',
),
'mail_smtpport' => '25',
'app_install_overwrite' =>
array (
0 => 'apporder',
1 => 'caniupdate',
2 => 'gallery',
3 => 'registration',
4 => 'preview_webp',
5 => 'pdfdraw',
6 => 'impersonate',
7 => 'documentserver_community',
8 => 'files_downloadactivity',
),
'updater.release.channel' => 'stable',
'data-fingerprint' => 'xxx',
'mail_sendmailmode' => 'smtp',
);
also things im passing to my php (i use cloudpanel)
date.timezone=America/New_York;
display_errors=off;
output_buffering=0;
opcache.enable_cli=1;
opcache.save_comments=1;
opcache.revalidate_freq=60;
opcache.interned_strings_buffer=15;
opcache.jit=1255;
opcache.jit_buffer_size=128M;
opcache.max_accelerated_files=10000;
env[PATH]=/usr/local/bin:/usr/bin:/bin;