Nextcloud version: 24.0.4
Operating system and version: Ubuntu 22.04
Apache or nginx version: Apache/2.4.52 (Ubuntu)
PHP version: 8.1.2
My issue:
I installed my Nextcloud on a small PC with mariadb and apache2.
So far everything works very well.
The only problem I currently have is the up and download times.
These are currently at a maximum of 1-4mb/s, which is really very slow.
It can’t be because of my internet. I tested the speed:
Testing download speed.........................
Download: 97.98 Mbit/s
Testing upload speed...........................
Upload: 37.69 Mbit/s
What i also noticed is that after the upload the files still need a long time until the upload is completed:
My hardware should also not be the problem:
system: Linux 5.15.0-46-generic x86_64
proceccor: Intel(R) Celeron(R) J4125 CPU @ 2.00GHz (4 cores)
ram: Speicher: 7.60 GB
rom 128gb SSD
The output of my config.php file in /var/www/nextcloud/config/config.php:
<?php
$CONFIG = array (
'instanceid' => '*******',
'passwordsalt' => '*******',
'secret' => '*******',
'trusted_domains' =>
array (
0 => '192.168.178.65',
1 => 'domain.com',
),
'datadirectory' => '/home/data',
'dbtype' => 'mysql',
'version' => '24.0.4.1',
'overwrite.cli.url' => 'https://domain.com',
'dbname' => 'nextcloud',
'dbhost' => 'localhost',
'dbport' => '',
'dbtableprefix' => 'oc_',
'mysql.utf8mb4' => true,
'dbuser' => 'user',
'dbpassword' => '****',
'installed' => true,
'memcache.local' => '\\OC\\Memcache\\APCu',
'mail_from_address' => '****',
'mail_smtpmode' => 'smtp',
'mail_sendmailmode' => 'smtp',
'mail_domain' => 'domain.com',
'mail_smtphost' => 'smtp.domain.com',
);
Does anyone know where the problem is? i’m not the most professional in linux.