Owncloud and Directadmin

kazanka101

New member
Joined
Oct 14, 2018
Messages
1
Hello,

I'm trying to setup and configure owncloud on a subdomain and I'm getting all sorts of errors from within the owncloud admin panel.

DA Configuration:
NGINX + Apache w/ PHP-FPM

I have found this article on it - https://shellz.nl/blog/nginx/owncloud/directadmin-nginx-phpfpm-owncloud

I'm assuming it's outdated because it's not working for me. The problem is I cannot get webDAV to work. If anyone could help and give me insight on how to get this working....

Thanks.
 
Hi,

you must update your options.conf to get it work.


Code:
cd /usr/local/directadmin/custombuild
./build set http_methods GET:HEAD:POST:PROPFIND:OPTIONS:PUT:DELETE:MKCOL:COPY:MOVE:REPORT
./build rewrite_confs


and it should work

Regards,
 
In addition of webaltern, if you dont want it make to all of your customers availible you can add this to your custom httpd config of that site/domain, here a custom httpd that i use for a domain:

Code:
<Directory /home>
   AllowMethods GET HEAD POST PUT REPORT OPTIONS PROPFIND PROPPATCH DELETE MOVE MKCOL COPY
</Directory>
 
In addition of webaltern, if you dont want it make to all of your customers availible you can add this to your custom httpd config of that site/domain, here a custom httpd that i use for a domain:

Code:
<Directory /home>
   AllowMethods GET HEAD POST PUT REPORT OPTIONS PROPFIND PROPPATCH DELETE MOVE MKCOL COPY
</Directory>

Just wanted to say thanks! This solved an issue with my server. All was running well but I got the error after a recent server update:
Code:
requested method PROPFIND is not allowed
. When I replaced the existing lines with yours, everything worked again! Many many thanks :)
 
Back
Top