Hallo,
ich betreibe einen nextcloud server auf einem sebst gehostedem ubuntu system
nach dem Update auf 30 bekomme ich die fehlermeldungen einfach nicht weg.
There are some errors regarding your setup.
-
Your web server is not yet properly set up to allow file synchronization, because the WebDAV interface seems to be broken. To allow this check to run you have to make sure that your Web server can connect to itself. Therefore it must be able to resolve and connect to at least one of its
trusted_domains
or theoverwrite.cli.url
. This failure may be the result of a server-side DNS mismatch or outbound firewall rule. -
Your webserver is not set up to serve
.js.map
files. Without these files, JavaScript Source Maps wonât function properly, making it more challenging to troubleshoot and debug any issues that may arise. -
Unable to run check for JavaScript support. Please remedy or confirm manually if your webserver serves
.mjs
files using the JavaScript MIME type. To allow this check to run you have to make sure that your Web server can connect to itself. Therefore it must be able to resolve and connect to at least one of itstrusted_domains
or theoverwrite.cli.url
. This failure may be the result of a server-side DNS mismatch or outbound firewall rule. -
Your web server is not properly set up to resolve â/ocm-provider/â, â/ocs-provider/â. This is most likely related to a web server configuration that was not updated to deliver this folder directly. Please compare your configuration against the shipped rewrite rules in â.htaccessâ for Apache or the provided one in the documentation for Nginx. On Nginx those are typically the lines starting with âlocation ~â that need an update. For more details see the documentation .
-
Your web server is not properly set up to resolve
.well-known
URLs, failed on:/.well-known/webfinger
For more details see the documentation . -
389 errors in the logs since 15. Oktober 2024, 10:30:55
-
Could not check that your web server serves security headers correctly, unable to query
/index.php/heartbeat
For more details see the documentation .
Die Runtime FIles liegen alle auf: /var/www/domain.org/nextcloud
Interessanterweise sehe ich im Apache error log dass die php dateien nicht auf den richtigen pfad verweisen
Mon Oct 21 12:39:40.546244 2024] [php:error] [pid 428496] [client 127.0.0.1:54686] script â/var/www/html/remote.phpâ not found or unable to stat
[Mon Oct 21 12:39:40.875670 2024] [php:error] [pid 428503] [client 127.0.0.1:54698] script â/var/www/html/remote.phpâ not found or unable to stat
[Mon Oct 21 12:39:42.130209 2024] [php:error] [pid 428519] [client 127.0.0.1:55714] script â/var/www/html/index.phpâ not found or unable to stat
[Mon Oct 21 12:39:42.217375 2024] [php:error] [pid 428472] [client 127.0.0.1:55718] script â/var/www/html/index.phpâ not found or unable to stat
Apache site conf:
<VirtualHost 123.123.123.123:443>
ServerName nextcloud.domain.org
DocumentRoot /var/www/domain.org/nextcloud
#Header always set Strict-Transport-Security âmax-age=63072000; includeSubDomainsâ
<Directory /var/www/domain.org/nextcloud/>
Require all granted
AllowOverride All
Options FollowSymLinks MultiViews
SSLEngine On
Include /etc/letsencrypt/options-ssl-apache.conf
SSLCertificateFile /etc/letsencrypt/live/domain.org/fullchain.pem
SSLCertificateKeyFile /etc/letsencrypt/live/domain.org/privkey.pem
<VirtualHost 123.123.123.123:80>
ServerName nextcloud.domain.org
Redirect â/â âhttps://nextcloud.domain.orgâ
RewriteEngine on
RewriteCond %{SERVER_NAME} =nextcloud.domain.org
RewriteRule ^ https://%{SERVER_NAME}%{REQUEST_URI} [END,NE,R=permanent]
nexcloud config.php:
$CONFIG = array (
âinstanceidâ => âocv1zxhvovlqâ,
âpasswordsaltâ => âZpa49IdvkGWzEQjj4QzE5GqTGmJX9Wâ,
âsecretâ => â0RB7YjMQyuI4TFIgCYmK4V0MrvklaiAeJBbMcsYYp/QLMwYJâ,
âtrusted_domainsâ =>
array (
0 => ânextcloud.domain.orgâ,
1 => â123.123.123.123â,
2 => â127.0.0.1â,
),
âdatadirectoryâ => â/home/owncloud/dataâ,
âoverwrite.cli.urlâ => âhttps://nextcloudâŠorgâ,
âoverwritewebrootâ => â/â,
âoverwritehostâ => ânextcloud.domain.orgâ,
âdbtypeâ => âmysqlâ,
âversionâ => â30.0.1.2â,
âdbnameâ => âowncloudâ,
âdbhostâ => â127.0.0.1â,
âdbtableprefixâ => âoc_â,
âdbuserâ => âowncloudâ,
âdbpasswordâ => â123â,
âlogtimezoneâ => âUTCâ,
âinstalledâ => true,
âmail_domainâ => â',
âmail_from_addressâ => âserveralertâ,
âmail_smtpmodeâ => âsmtpâ,
âloglevelâ => 2,
âthemeâ => ââ,
âmail_smtphostâ => 'â,
âmail_sendmailmodeâ => âsmtpâ,
âmail_smtpportâ => â25â,
âmysql.utf8mb4â => true,
âdefault_phone_regionâ => âATâ,
âmemcache.localâ => â\OC\Memcache\APCuâ,
âmaintenanceâ => false,
âmail_smtpauthâ => 1,
âmail_smtpnameâ => âserveralert@',
âmail_smtppasswordâ => 'â,
âforce_languageâ => âenâ,
âdata-fingerprintâ => â***â,
âmaintenance_window_startâ => 1,
âupdater.release.channelâ => âstableâ,
);
ich hab da jetzt schon rumprobiert und komme nicht wirklich dahinter.
gibts dafĂŒr vlt einen hinweiĂ?
danke