37

In Nautilus from Gnome 3, the Connect to Server dialog is missing the Type field.

How can I establish a WebDAV connection?

Screenshot of the dialog

2 Answers2

60

In the Server Address field type the following:

davs://user@host.name/path

The user@ and path parts are of course optional, so, if needed, you can just type:

davs://host.name/

If you need, you may provide a password as well:

davs://user:password@host.name/path
  • 16
    Thanks for your answer. Such a stupid UI which does not even give a hint which URLs are supported. Used to be much better with the combo box for selection in Gnome 2. – eudoxos Jul 08 '13 at 07:17
  • I'm embarrassed to say how long I've been fighting with this, only to find I was missing that trailing slash after host.name. Thanks. – Marc Jul 15 '14 at 02:08
  • 1
    The help for this in Nautilus is also not helpful because it says to use http:// or https:// for WebDAV – mjaggard Aug 27 '15 at 08:01
  • I'm using ubuntu 12.04, and this simply does not seem to work. It's returning 403: FORBIDDEN all the time. – jjmerelo Dec 26 '18 at 17:38
  • 1
    @jjmerelo: you might need to authenticate. By the way, please note that 12.04 was released more than 6 years ago and it's EOL now – Andrea Corbellini Dec 26 '18 at 22:32
  • Keep getting "HTTP Error: Unauthorized" on 19.04 even though my username and password are provided. – Scott P. Mar 27 '19 at 21:57
8

If someone is getting the error "SSL Handshake Failed", then exclude the "s" from davs since we are not using SSL i.e.

dav://user@hostname:port/path

This took me a while to figure out so hopefully this helps some people out there :).

NahsiN
  • 708
  • 1
  • 9
  • 20