Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- <VirtualHost *:443>
- SSLEngine on
- SSLCertificateFile /etc/apache2/ssl/cert.pem
- SSLCertificateKeyFile /etc/apache2/ssl/key-cert.pem
- ProxyRequests Off
- <Proxy *>
- Order deny,allow
- Allow from all
- </Proxy>
- ProxyVia On
- ProxyPass /webdav/ http://127.0.0.1:8069/webdav/
- <Location /webdav/ >
- ProxyPassReverse /webdav/
- <Limit OPTIONS PROPFIND GET REPORT MKACTIVITY PROPPATCH PUT MOVE COPY DELETE LOCK UNLOCK>
- Order Deny,Allow
- Allow from all
- Satisfy Any
- </Limit>
- </Location>
- ProxyPass / http://127.0.0.1:8069/
- <location / >
- ProxyPassReverse /
- </location>
- RequestHeader set "X-Forwarded-Proto" "https"
- # Fix IE problem (httpapache proxy dav error 408/409)
- SetEnv proxy-nokeepalive 1
- ErrorDocument 400 'ERROR!'
- ErrorDocument 403 'ERROR!'
- ErrorDocument 404 'ERROR!'
- ErrorDocument 503 'ERROR!'
- </VirtualHost>
Advertisement
Add Comment
Please, Sign In to add comment