0

Can anyone here explain the problem, Why do I get Error 403 (Forbidden) but when I connect to a https WEBDAV I can get the Directory Listing. I use WebDAV Server on Ubuntu 18.4 with valid Certificate and port 4433.

When I use CarotDAV I can see all files in the directory and works fine. But with Chrome or FF or when I use the IPWorks WebDAv compononet (separate question: Q&A for WebDAV Comp from nsoftware ) in Delphi 10.4 I get Error 403 from Server. Is there a option to set in the https.conf in apache to see the directory listing also in Chrome/FF ? Thanks

Walter Schrabmair
  • 1,251
  • 2
  • 13
  • 26

1 Answers1

0

As I could see: with this options it works fine also with Chrome/FF

    Alias /icons/ "/var/www/icons/"

   <Directory "/var/www/icons">
      Options Indexes MultiViews
      AllowOverride None
      Require all granted
   </Directory>
Walter Schrabmair
  • 1,251
  • 2
  • 13
  • 26