Skip to content
Snippets Groups Projects
Commit e3783ff8 authored by Pavel Kácha's avatar Pavel Kácha
Browse files

Added Apache 2.4 config example, updated README accordingly

parent f388dfdc
No related branches found
No related tags found
No related merge requests found
...@@ -79,7 +79,9 @@ C. Installation ...@@ -79,7 +79,9 @@ C. Installation
Include /opt/warden_server_3.0/apache.conf Include /opt/warden_server_3.0/apache.conf
or paste the contents into whichever Directory, Location or VirtualHost or paste the contents into whichever Directory, Location or VirtualHost
you dedicate for Warden. You can use apache.conf.dist as an example. you dedicate for Warden. You can use apache22.conf.dist or
apache24.conf.dist (for Apache version 2.2 or 2.4, respectively) as an
example.
You may need to change paths to certificate/key/ca material, path to You may need to change paths to certificate/key/ca material, path to
warden_server.wsgi and web path alias. warden_server.wsgi and web path alias.
......
SSLEngine on
SSLVerifyClient require
SSLVerifyDepth 4
SSLOptions +StdEnvVars +ExportCertData
#SSLCipherSuite ALL:!ADH:!EXPORT56:RC4+RSA:+HIGH:+MEDIUM:+LOW:+SSLv2:+EXP:+eNULL
SSLCertificateFile /opt/warden_server_3/etc/cert.pem
SSLCertificateKeyFile /opt/warden_server_3/etc/key.pem
SSLCACertificateFile /opt/warden_server_3/etc/tcs-ca-bundle.pem
WSGIScriptAlias /warden3 /opt/warden_server_3/warden_server.wsgi
<DirectoryMatch /opt/warden_server_3/warden_server.wsgi>
Require all granted
</DirectoryMatch>
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment