Support intro
Nextcloud version _: >= 27.0.2
Operating system and version _: Ubuntu 22.04
Apache or nginx version (eg, NGINX): NGINX
PHP version _: 8.1
The issue you are facing:
Is this the first time you’ve seen this error? (Y/N): Y
Steps to replicate it:
- Install or Update from Ubuntu 20.04 to Ubuntu 22.04
- HTTP/HTTPS Proxy. No DNS behind Proxy
3
The output of your Nextcloud log in Admin > Logging:
GuzzleHttp\Exception\RequestException: cURL error 49: Couldn't parse CURLOPT_RESOLVE entry 'apps.nextcloud.com:80:'! (see https://curl.haxx.se/libcurl/c/libcurl-errors.html) for
Dieser Server hat keine funktionierende Internetverbindung: Mehrere Ziele konnten nicht erreicht werden. Dies bedeutet, dass einige Funktionen, wie das Einhängen externer Speicher, Benachrichtigungen über Updates oder die Installation von Drittanbieter-Apps nicht funktionieren. Der Zugriff auf entfernte Dateien und das Senden von E-Mail-Benachrichtigungen wird wahrscheinlich ebenfalls nicht funktionieren. Um alle Funktionen nutzen zu können, stelle bitte eine Internet-Verbindung für diesen Server her.
config.php
<?php $CONFIG = array ( 'instanceid' => 'XXX', 'passwordsalt' => 'XXX', 'secret' => 'XXX', 'trusted_domains' => array ( 0 => '10.143.0.20', ), 'datadirectory' => '/var/www/html/nextcloud/data', 'dbtype' => 'mysql', 'version' => '27.0.2.1', 'overwrite.cli.url' => 'http://10.143.0.20/nextcloud', 'dbname' => 'nextcloud', 'dbhost' => 'localhost', 'dbport' => '', 'dbtableprefix' => 'oc_', 'mysql.utf8mb4' => true, 'dbuser' => 'nextcloud', 'dbpassword' => 'XXXXXXXX', 'installed' => true, 'proxy' => '10.65.110.200:3128', 'proxyexclude' => array ( 0 => 'it.g XXXX', ), ); ```