Dear all,

I hope this finds you well.

I am running OC 10.0.3 on Apache 2.4.29 (FreeBSD) with PHP 5.6.32. For some 
reason I keep on having issues when trying to synchronize my CalDav calendar 
with my Mac desktop. Here is what Apache reports in the logs and the calendar 
synchronization fails:

17.3.20.111 - - [10/Dec/2017:16:40:40 +0100] "PROPFIND 
/remote.php/dav/principals/users/sebastian/ HTTP/1.1" 405 268
17.3.20.111 - - [10/Dec/2017:16:40:43 +0100] "PROPFIND 
/remote.php/dav/principals/users/sebastian/ HTTP/1.1" 405 268
17.3.20.111 - - [10/Dec/2017:16:41:53 +0100] "PROPFIND 
/remote.php/dav/principals/users/sebastian/ HTTP/1.1" 405 268

Why am I getting these „method not allowed“ errors? According to the OC 
documentation and my Apache config, I think this should not happen:

—

<VirtualHost *:80>
   ServerName cloud.mydomain.tld
   Redirect permanent / https://cloud.mydomain.tld/

</VirtualHost>

<VirtualHost 144.76.61.234:443>

        ServerName cloud.mydomain.tld
        DocumentRoot "/usr/local/www/owncloud"

        <Directory "/usr/local/www/owncloud">
        Options +FollowSymLinks
        AllowOverride All
        Require all granted
        
        <Limit GET POST OPTIONS PROPFIND PUT DELETE MKCOL MOVE MKCALENDAR>
                Order allow,deny
                Allow from all
        </Limit>
        <LimitExcept GET POST OPTIONS PROPFIND PUT DELETE MKCOL MOVE MKCALENDAR>
                Order deny,allow
                Deny from all
        </LimitExcept>

        </Directory>

        ErrorLog /var/log/apache2/cloud.mydomain.tld_error_log
        TransferLog /var/log/apache2/cloud.mydomain.tld_access_log

        SSLEngine on
        SSLHonorCipherOrder On

        SSLCipherSuite EECDH+AESGCM:EDH+AESGCM:AES256+EECDH:AES256+EDH
        SSLProtocol all -SSLv2 -SSLv3
        SSLCompression Off
        Header always set Strict-Transport-Security "max-age=63072000; 
includeSubdomains; preload"
        Header always set X-Frame-Options DENY
        Header always set X-Content-Type-Options nosniff

        SSLCertificateFile /etc/letsencrypt/live/cloud.mydomain.tld/cert.pem
        SSLCertificateKeyFile 
/etc/letsencrypt/live/cloud.mydomain.tld/privkey.pem
        SSLCACertificateFile /etc/letsencrypt/live/cloud.mydomain.tld/chain.pem

        <FilesMatch "\.(cgi|shtml|phtml|php)$">
                SSLOptions +StdEnvVars
        </FilesMatch>

        php_value curl.cainfo /etc/php/cacert.pem
        php_value error_reporting 1
        php_value display_errors 1
        php_value display_errors On
        php_value file_uploads On

</VirtualHost>


— 

Other webdav modules are disabled, mod_rewrite enabled. Any ideas?

Thanks!

Kind regards
Sebastian

_______________________________________________
User mailing list
User@owncloud.org
http://mailman.owncloud.org/mailman/listinfo/user

Reply via email to