cryptonas-archive/v0.3.4.5/conf-examples/apache_proxypass.conf
lars 152e67283a created new tag v0.3.4.5 (based on v0.3.4.3)
merged changeset 969
updated list of contributers
2007-08-21 23:31:35 +00:00

26 lines
574 B
Plaintext

# 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>