Skip to content
Snippets Groups Projects
Forked from 713 / Warden / Warden - archive
614 commits behind the upstream repository.
warden-apache.conf.tmpl 526 B
#
#
# warden-apache.conf - configuration file for the Apache server
#

SSLEngine on

SSLVerifyDepth 3
SSLVerifyClient require
SSLOptions +StdEnvVars +ExportCertData

SSLCipherSuite ALL:!ADH:!EXPORT56:RC4+RSA:+HIGH:+MEDIUM:+LOW:+SSLv2:+EXP:+eNULL

SSLCertificateFile    _CERT_FILE_
SSLCertificateKeyFile _KEY_FILE_
SSLCACertificateFile  _CA_FILE_

PerlOptions +Parent
PerlSwitches -I _LIB_

<Location /Warden>
        SetHandler perl-script
        PerlHandler Warden::ApacheDispatch
        SSLOptions +StdEnvVars
</Location>