You are here
steffen - Mon, 2012/05/07 - 17:20
Hi All,
is there a way to enable webdav via webmin? I found an option to activate the modules but none
to configure the virtual hosts.
Or can you tell me what apache config file to edit to enable it for a specific host.
Thanks for you help.
Forum:
TBH I have no idea
But seeing as TKL v11.x is Ubuntu 10.04/Lucid under the hood then any instructions you find for that should directly relate to TKL. Sorry I can't help you any more than that...
webdav how to
Hi Jeremy,
thanks a lot, following your hint I managed get it working with this very nice tutorial.
Bye
http://www.linuxserver.org/linux/ubuntu/webdav-ubuntu-10-04/
Glad you got it working
And thanks for posting back with the link to the tutorial that worked!
URL no longer works
And since TKL is now Debian based here is an updated link to a working config.
*Tested on Debian 7.4.0
[ http://www.server-world.info/en/note?os=Debian_7.0&p=httpd&f=8 ]
Good on you! :)
Thanks for posting a new tute! :)
Even simpler
Be sure to activate the modules: (simply hit that into the shell)
a2enmod dav_fs
a2enmod dav
and add somthing like that to you virtual host config:
Alias /webdav /anywhere
<Location /webdav>
DAV On
SSLRequireSSL
Options None
AuthType Basic
AuthName webdav
AuthUserFile /topasswd/passwdadmin.dav
<LimitExcept GET OPTIONS>
Require valid-user
</LimitExcept>
</Location>
Great work!
Thanks for posting back, that's awesome!
Update: I decided to add this to the docs because I thought it is a very useful thing. I tweaked your example a little and added some extra detail. Please feel free to tweak it further if you think I got it wrong (the docs are a wiki so all logged in users can edit). Also I still need to double check it by testing it out to confirms that it works as it should.
If anyone has a chance and can double check, that'd be great! :)
Even nice
Yours is of course even nicer and it is the full story with permissions and password creation!
I tested it in one machine, when I use it again I will post it here!
Add new comment