123456789101112131415161718192021222324252627282930 |
- <VirtualHost *:80>
- ServerName webdav.server.com
- DocumentRoot /srv/webdav
- AccessFileName ASDFADSHADFHAESDFDSAFDASGASDFASDFASDFSA
- DirectoryIndex ASDFASDFASDFASDFASDFASDFASDFASDFSADFSDD
- Alias /__content__ /srv/webdav-js
- HeaderName /__content__/examples/apache-directory-list/header.html
- ReadmeName /__content__/examples/apache-directory-list/footer.html
- <Location />
- DAV on
- php_flag engine off
- # don't want PHP or HTML rendering as anything other than text
- # you might need to add more types here
- AddType text/plain .php
- AddType text/plain .html
- </Location>
- <Location /__content__/>
- # in here we do want the HTML rendered
- AddType text/html .html
- </Location>
- </VirtualHost>
|