Nextcloud version (eg, 12.0.2): 16.0.1
Operating system and version (eg, Ubuntu 17.04): Ubuntu 18.04.2 LTS
Apache or nginx version (eg, Apache 2.4.25): nginx version: nginx/1.14.0 (Ubuntu)
PHP version (eg, 7.1): PHP 7.2.20-1+ubuntu18.04.1+deb.sury.org+1 (cli) (built: Jul 10 2019 06:59:02) ( NTS )
The issue you are facing: Repeatedly getting the following errors in my web portal admin account overview section:
`There are some errors regarding your setup.
Error occurred whilst checking server setup
Your web server is not properly set up to resolve "/.well-known/caldav". Further information can be found in the documentation.
Your web server is not properly set up to resolve "/.well-known/carddav". Further information can be found in the documentation.
`
I’ve also be dealing with other issues such as .htaccess and user.ini not passing file integrity checks. I believe I have fixed this issue but it could be a factor, I’m not sure.
Also my front page of the web portal constantly refreshes ever 5 seconds. I’ve seen this before. To fix it I edited my .htaccess and that’s what led to the above problem. Could be related. Unsure.
Also every couple of hours my server forces itself into maintenance mode for completely unknown reasons.
Is this the first time you’ve seen this error? (Y/N): Yes and No. I have not seen the caldav error per se but I have seen the other errors off and on before and it appears to me to be part of some weird pattern.
The output of your Nextcloud log in Admin > Logging:
Unable to retrieve admin logging information from web portal. It tries to load and just shows the loading animation forever.
The output of your config.php file in /path/to/nextcloud
(make sure you remove any identifiable information!):
<?php
$CONFIG = array (
'passwordsalt' => 'redacted',
'secret' => 'redacted',
'trusted_domains' =>
array (
0 => 'localhost',
1 => 'cloud.jackalope.tech',
2 => 'wiki.jackalope.tech',
),
'datadirectory' => '/var/nc-data',
'overwrite.cli.url' => 'https://cloud.jackalope.tech',
'overwriteprotocol' => 'https',
'dbtype' => 'mysql',
'version' => '16.0.1.1',
'dbname' => 'redacted',
'dbhost' => 'localhost',
'dbport' => '',
'dbtableprefix' => 'oc_',
'mysql.utf8mb4' => true,
'dbuser' => 'admindb',
'dbpassword' => 'redacted',
'installed' => true,
'instanceid' => 'redacted',
'mail_from_address' => '',
'mail_smtpmode' => 'smtp',
'mail_smtpauthtype' => 'LOGIN',
'mail_domain' => '',
'mail_smtpname' => '',
'mail_smtpsecure' => 'tls',
'mail_smtpauth' => '1',
'mail_smtphost' => '',
'mail_smtpport' => '587',
'mail_smtppassword' => '',
'memcache.local' => '\\OC\\Memcache\\APCu',
'redis' =>
array (
'host' => '/var/run/redis/redis.sock',
'port' => '0',
'timeout' => '0.0',
),
'memcache.locking' => '\\OC\\Memcache\\Redis',
'filelocking.enabled' => 'true',
'enable_previews' => 'true',
'enabledPreviewProviders' =>
array (
0 => 'OC\\Preview\\PNG',
1 => 'OC\\Preview\\JPEG',
2 => 'OC\\Preview\\GIF',
3 => 'OC\\Preview\\BMP',
4 => 'OC\\Preview\\XBitmap',
5 => 'OC\\Preview\\Movie',
6 => 'OC\\Preview\\PDF',
7 => 'OC\\Preview\\MP3',
8 => 'OC\\Preview\\TXT',
9 => 'OC\\Preview\\MarkDown',
),
'preview_max_x' => '1024',
'preview_max_y' => '768',
'preview_max_scale_factor' => '1',
'auth.bruteforce.protection.enabled' => 'true',
'trashbin_retention_obligation' => 'auto,7',
'skeletondirectory' => '',
'defaultapp' => 'file',
'activity_expire_days' => '14',
'integrity.check.disabled' => 'false',
'updater.release.channel' => 'stable',
'loglevel' => 0,
'maintenance' => false,
'theme' => '',
'twofactor_enforced' => 'false',
'twofactor_enforced_groups' =>
array (
),
'twofactor_enforced_excluded_groups' =>
array (
),
'onlyoffice' =>
array (
'verify_peer_off' => true,
),
'data-fingerprint' => 'redacted',
);
The output of your Apache/nginx/system log in /var/log/____
:
2019/07/20 09:10:30 [crit] 1680#1680: *109698 SSL_do_handshake() failed (SSL: error:14209102:SSL routines:tls_early_post_process_client_hello:unsupported protocol) while SSL handshaking, client: 102.165.51.36, server: 0.0.0.0:443
The above could be because I earlier today tried adding stuff to the ssl.conf on my nginx settings due to trying to follow this thread: Caldav and carddav error resolving
I’m currently scouring other threads on the forum, checking reddit, checking the github repo etc. So I’m not done trying things, but I’ve been having problems with this thing for nearly 6 months and I don’t know what I can do to fix it.