Hello. This is my first post. First of all, thank you very much guys for this great OS!
I’m trying to access the nextcloud in my RPi, but I can’t.
I have installed nextcloud, generated the certificate, set the DDNS, and forwarded port 80 and 443.
Always seems working OK from my LAN. If I go to https://myddns/nextcloud, I get the login dialog.
When I go to http://myddns from WAN, I get a secure connection to the default page. BUT, if I try https://myddns/nextcloud I get "You can’t access this website, ERR_CONNECTION_TIMED_OUT.
First guess was my “allowed domains” in config.php, but no. Here is my config.php
<?php
$CONFIG = array (
  'passwordsalt' => 'xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx',
  'secret' => 'xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx',
  'trusted_domains' =>
  array (
    0 => 'localhost',
    1 => '*',
  ),
  'datadirectory' => '/mnt/dietpi_userdata/nextcloud_data',
  'dbtype' => 'mysql',
  'version' => '21.0.0.18',
  'hashingThreads' => 4,
  'memcache.local' => '\\OC\\Memcache\\APCu',
  'filelocking.enabled' => true,
  'memcache.locking' => '\\OC\\Memcache\\Redis',
  'redis' =>
  array (
    'host' => '/run/redis/redis-server.sock',
    'port' => 0,
  ),
  'overwrite.cli.url' => 'http://localhost/nextcloud',
  'dbname' => 'nextcloud',
  'dbhost' => 'localhost',
  'dbport' => '',
  'dbtableprefix' => 'oc_',
  'mysql.utf8mb4' => true,
  'dbuser' => 'oc_admin',
  'dbpassword' => 'xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx',
  'installed' => true,
  'instanceid' => 'xxxxxxxxxxxxxxxxxxxxxxx',
  'maintenance' => false,
);
Could you help me?