Problem mit Apache config

[/details]

Nextcloud version : 28.0.1
Operating system and version: Debian 12
Apache or nginx version : 2.4
PHP version : 8.2

Ich habe das problem das ich die fehler meldungen nicht wegbekomme siehe screenshot

Is this the first time you’ve seen this error? (Y/N):y

The output of your Nextcloud log in Admin > Logging:

log ist leer

The output of your config.php file in /path/to/nextcloud (make sure you remove any identifiable information!):

GNU nano 7.2 config.php <?php
$CONFIG = array (
‘instanceid’ => ‘ocfgw6epuxcg’,
‘passwordsalt’ => ‘KZ/dPm8tmE3emwbnYLFa71H’,
‘secret’ => '/
‘trusted_domains’ =>
array (

),
‘trusted_proxies’ => [‘192.168.177.4/24’, ‘192.168.177.4’, ‘192.177.168.131’],
‘datadirectory’ => ‘/var/www/nextcloud/data’,
‘dbtype’ => ‘mysql’,
‘version’ => ‘28.0.1.1’,
‘overwrite.cli.url’ => ‘http://192.168.177.131:8080’,
‘dbname’ => ‘nextcloud_db’,
‘dbhost’ => ‘localhost’,
‘dbport’ => ‘’,
‘dbtableprefix’ => ‘oc_’,
‘mysql.utf8mb4’ => true,
‘dbuser’ => ',
‘dbpassword’ =>
‘installed’ => true,
‘mail_smtpmode’ => ‘sendmail’,
‘mail_sendmailmode’ => ‘pipe’,
‘mail_from_address’ => ‘webmaster’,
‘mail_domain’ => ',
‘default_phone_region’ => ‘DE’,
‘filelocking.enabled’ => true,
‘memcache.local’ => ‘\OC\Memcache\APCu’,
‘memcache.locking’ => ‘\OC\Memcache\Redis’,
‘memcache.distributed’ => ‘\OC\Memcache\Redis’,
‘redis’ =>
array (
‘host’ => ‘/var/run/redis/redis-server.sock’,
‘port’ => 0,
‘timeout’ => 0.0,
),
);

The output of your Apache/nginx/system log in /var/log/____:
[Tue Jan 30 19:15:36.713534 2024] [mpm_prefork:notice] [pid 1039] AH00170: caught SIGWINCH, shutting down gracefully
[Tue Jan 30 19:15:37.222621 2024] [mpm_prefork:notice] [pid 1097] AH00163: Apache/2.4.57 (Debian) configured – resuming normal operations
[Tue Jan 30 19:15:37.222780 2024] [core:notice] [pid 1097] AH00094: Command line: ‘/usr/sbin/apache2’

Output errors in nextcloud.log in /var/www/ or as admin user in top right menu, filtering for errors. Use a pastebin service if necessary.
leer

vhost

<VirtualHost *:8080>
ServerName
ServerAdmin webmaster@localhost
DocumentRoot /var/www/nextcloud/
ErrorLog /var/log/apache2/nextcloud/files.nextcloud-error.log
CustomLog /var/log/apache2/nextcloud/files.nextcloud-access.log combined
<Directory /var/www/nextcloud/>
Require all granted
AllowOverride All
Options FollowSymLinks MultiViews

<IfModule mod_dav.c>
  Dav off
</IfModule>
1 Like