Guenter
-
8/23/2013 3:34:15 AM
Virtual directory - FTP content
Hi,
I tried to add a virtual directory in IIS 8.0 to map some FTP content (only images, videos, html pages), but unfortunately I also get the Kentico login page.
I tried to add a location element into web.config:
<location path="ftpcontent"> <system.web> <authorization> <allow users="*"/> </authorization> <httpHandlers> <clear/> <add verb="*" path="*" type="CMS.WebDAV.WebDAVHandler, CMS.WebDAV"/> </httpHandlers> <httpModules> <remove name="XHtmlModule" /> </httpModules> </system.web> </location>
and also created a web.config in the virtual directory, but with no success.
How can I map the content?
|