Re: [users@httpd] Apache allowed OPTIONS

2018-06-25 Thread Alex K
Thanx Nick for the feedback. Indeed when I change the URL to point to a file then I get the PUT reply: HTTP/1.1 200 OK Date: Mon, 25 Jun 2018 13:09:26 GMT Server: Apache/2.4.25 (Debian) DAV: 1,2 DAV: MS-Author-Via: DAV Allow: OPTIONS,GET,HEAD,POST,DELETE,TRACE

Re: [users@httpd] Apache allowed OPTIONS

2018-06-14 Thread Nick Kew
> On 13 Jun 2018, at 17:18, Alex K wrote: > > > curl -sI -X OPTIONS http://169.254.254.55/webdav/ > > The PUT functions correctly if one tries to PUT a file but the issue is that > it is not listed and this breaks the third party app as it is currently > built. I doubt it. I expect PUT t

Re: [users@httpd] Apache allowed OPTIONS

2018-06-14 Thread Alex K
Hi, Thanx for the below. I tried this approach but still no luck. I have the following at apache: DavLockDB /var/www/DavLock DocumentRoot /var/www/html ServerAdmin webmaster@localhost Options Indexes FollowSymLinks MultiViews allow from

Re: [users@httpd] Apache allowed OPTIONS

2018-06-13 Thread Yann Ylavic
On Wed, Jun 13, 2018 at 6:18 PM, Alex K wrote: > > Is there any way to make apache list the PUT options as available? Probaly AllowMethods (https://httpd.apache.org/docs/current/en/mod/mod_allowmethods.html#allowmethods). Regards, Yann. --

[users@httpd] Apache allowed OPTIONS

2018-06-13 Thread Alex K
Hi all, I have setup Webav with apache2. I am testing the setup on a Debian7 with apache 2.2.22. Although the webdav is functioning ok I have a third party application that needs to put files on the webdav folder and before it does that it checks the available methods that apache allows. This app