Hello
I'm having troubles with Letsencrypt, Nextcloud and I receive this message.
Welcome to our server
The website is currently being setup under this address.
For help and support, please contact: me@example.com
I have read some posts in this and other forums, trying to change pieces of code, reinstall Nextcloud, permissions on the folders but nothing is working for me.
The domain is basscloud.duckdns.org. nextcloud is the name of the container and 444 the internal port of this container.
Nextcloud.subdomain from letsencrypt (I have some thinkings about upstream_nextcloud and ports
Code
server {
listen 443 ssl;
listen [::]:443 ssl;
server_name basscloud.*;
include /config/nginx/ssl.conf;
client_max_body_size 0;
location / {
include /config/nginx/proxy.conf;
resolver 127.0.0.11 valid=30s;
set $upstream_nextcloud nextcloud;
set $upstream_port 444;
set $upstream_proto https;
proxy_pass $upstream_proto://$upstream_nextcloud:$upstream_port;
proxy_max_temp_file_size 2048m;
}
}
Display More
Display Less
config from nextcloud docker: The trusted domain number 2 is to access via 444 port without https and ssl certificate while it doesn't work.
PHP
<?php
$CONFIG = array (
'memcache.local' => '\\OC\\Memcache\\APCu',
'datadirectory' => '/data',
'instanceid' => 'xxxxxxxxxxxxxx',
'passwordsalt' => 'xxxxxxxxxxxxxxxxX',
'secret' => 'xxxxxxxxxxxxx',
'trusted_domains' => array (
0 => '192.168.1.5:444',
1 => 'basscloud.duckdns.org',
2 => 'sbasstbone.ddns.net',
),
'trusted_proxies' => ['letsencrypt'],
'dbtype' => 'mysql',
'version' => '18.0.2.2',
'overwrite.cli.url' => 'https://basscloud.duckdns.org',
# 'overwritehost' => 'basscloud.duckdns.org',
'overwriteprotocol' => 'https',
'dbname' => 'xxxxxxx',
'dbhost' => '192.168.1.5:3306',
'dbport' => '',
'dbtableprefix' => 'oc_',
'mysql.utf8mb4' => true,
'dbuser' => 'xxxxxxx',
'dbpassword' => 'xxxxxxxxxx',
'installed' => true,
);
Display More
Display More
Some ideas to try?? Tell me please!
Sorry about me putting this information on another Thread.