Hallo, ich habe ein Update meines Raspi gemacht und danach konnte ich auf die nextcloud nicht mehr zugreifen. Ich habe das ganze so konfiguriert, dass die nextcloud auf Port 4433 und 808 hört. Die externen Ports 443 und 80 leite ich entsprechend auf diese um.
nextcloudPi kann ich mit 192.168.178.19:4443 erreichen. Aber mit einem https://192.168.178.19:4433 bekomme ich immer eine weisse Seite mit einer Browserfehlermeldung - im Firefox den Fehlercode: SSL_ERROR_RX_RECORD_TOO_LONG, im Edge
ERR_SSL_PROTOCOL_ERROR
Meine config.php sieht so aus:
Laut System info von nextcloud pi sind die Ports 80 und 443 auch geschlossen, obwohl sie ordnungsgemäss geöffnet sind. Letztlich hat ja das Abholen des Lets Encrypt Zertifikats ja schonmal geklappt.
Ich weiss wirklich nicht mehr weiter.
nextcloudPi kann ich mit 192.168.178.19:4443 erreichen. Aber mit einem https://192.168.178.19:4433 bekomme ich immer eine weisse Seite mit einer Browserfehlermeldung - im Firefox den Fehlercode: SSL_ERROR_RX_RECORD_TOO_LONG, im Edge
Die Verbindung mit dieser Website ist nicht sicher.
192.168.178.19 hat eine ungültige Antwort gesendet.ERR_SSL_PROTOCOL_ERROR
Meine config.php sieht so aus:
<?php
$CONFIG = array (
'passwordsalt' => 'xxx',
'secret' => 'xxx',
'trusted_domains' =>
array (
0 => 'localhost',
1 => '192.168.178.19',
3 => 'raspberrypi-iob',
4 => 'nextcloudpi.local',
5 => 'nextcloudpi',
6 => 'nextcloudpi.lan',
7 => 'mydns',
8 => 'https://mydns',
),
'datadirectory' => '/var/www/nextcloud/data',
'dbtype' => 'mysql',
'version' => '21.0.4.1',
'overwriteprotocol' => 'https',
'overwrite.cli.url' => 'https://mydns',
'dbname' => 'nextcloud',
'dbhost' => 'localhost',
'dbport' => '',
'dbtableprefix' => 'oc_',
'mysql.utf8mb4' => true,
'dbuser' => 'ncadmin',
'dbpassword' => 'xxx',
'installed' => true,
'instanceid' => 'ocerw4in4l88',
'memcache.local' => '\\OC\\Memcache\\Redis',
'memcache.locking' => '\\OC\\Memcache\\Redis',
'redis' =>
array (
'host' => '/var/run/redis/redis.sock',
'port' => 0,
'timeout' => 0.0,
'password' => 'xxx',
),
'tempdirectory' => '/var/www/nextcloud/data/tmp',
'mail_smtpmode' => 'smtp',
'mail_smtpauthtype' => 'LOGIN',
'mail_from_address' => 'mail',
'mail_domain' => 'maildomain.de',
'loglevel' => '2',
'log_type' => 'file',
'twofactor_enforced' => 'true',
'twofactor_enforced_groups' =>
array (
),
'twofactor_enforced_excluded_groups' =>
array (
),
'allow_local_remote_servers' => true,
'maintenance' => false,
'htaccess.RewriteBase' => '/',
'mail_sendmailmode' => 'smtp',
'mail_smtpsecure' => 'ssl',
'mail_smtpauth' => 1,
'mail_smtphost' => 'mx2f0b.netcup.net',
'mail_smtpport' => '465',
'mail_smtpname' => 'mail@maildomain.de',
'mail_smtppassword' => 'xxx',
'trusted_proxies' =>
array (
11 => '127.0.0.1',
12 => '::1',
13 => 'raspberrypi-iob',
14 => '127.0.0.1',
),
);
Laut System info von nextcloud pi sind die Ports 80 und 443 auch geschlossen, obwohl sie ordnungsgemäss geöffnet sind. Letztlich hat ja das Abholen des Lets Encrypt Zertifikats ja schonmal geklappt.
Ich weiss wirklich nicht mehr weiter.