lars
3e1bfda98e
added help texts for all plugins fixed 'encryption status' bug in 'volume_details' improved rendering of 'volume_properties' and 'user_manager' chmod root directory of mounted volumes to 0777 to avoid later permission problems for samba or WebDAV
25 lines
574 B
Text
25 lines
574 B
Text
# CryptoBox configuration file
|
|
#
|
|
# the following directives allow you to use the cryptobox web interface behind apache2
|
|
#
|
|
# you need to enable the following modules:
|
|
# - proxy
|
|
# - headers
|
|
# (for debian: run "a2enmod MOD_NAME")
|
|
#
|
|
|
|
ProxyRequests Off
|
|
|
|
# you may restrict access if necessary
|
|
<Proxy *>
|
|
Order Deny,Allow
|
|
Allow from all
|
|
</Proxy>
|
|
|
|
<Location /cryptobox/>
|
|
ProxyPass http://localhost:8080/
|
|
ProxyPassReverse http://localhost:8080/
|
|
# this requestheader is necessary to allow proper redirection to https
|
|
RequestHeader set CryptoBox-Location /cryptobox
|
|
</Location>
|
|
|