Create a WebDAV Directory

Connect with other users about what to run on your webhosting (and how to run it) here.
Post Reply
benkulbertis
New to forums
New to forums
Posts: 1
https://www.youtube.com/channel/UC40BgXanDqOYoVCYFDSTfHA
Joined: Wed Sep 29, 2010 3:50 pm

Create a WebDAV Directory

Post by benkulbertis »

Hi there, I was wondering how to create a WebDAV directory with SSH. Thanks!
Jesse
A semi-regular
A semi-regular
Posts: 15
Joined: Sun Nov 07, 2010 6:02 pm

Re: Create a WebDAV Directory

Post by Jesse »

benkulbertis wrote:Hi there, I was wondering how to create a WebDAV directory with SSH. Thanks!

You can start with setting up a tunnel of sorts...

$ ssh -fN -L8080:localhost:80 webdavserver
$ mkdir /Volumes/mnt
$ mount_webdav localhost:8080/Users /Volumes/mnt

Where webdavserver is the hostname of your webdav server, and you want to access the /Users folder on your local machine via the path /Volumes/mnt. You must have an account on webdavserver.


For a more specific guide you can read this article here.
http://hints.macworld.com/article.php?s ... 0100413622
Post Reply