diff options
author | Andreas Steffen <andreas.steffen@strongswan.org> | 2007-04-05 17:08:51 +0000 |
---|---|---|
committer | Andreas Steffen <andreas.steffen@strongswan.org> | 2007-04-05 17:08:51 +0000 |
commit | 69837d5baadc61612061290fc94c79fb2625f5be (patch) | |
tree | 4ad0a02722e51ffc5c4ec8adeefed9464245b240 /testing/hosts/winnetou/etc/apache2 | |
parent | 8883eef7b85d8cbf0daf6064d12971b35dad9921 (diff) | |
download | strongswan-69837d5baadc61612061290fc94c79fb2625f5be.tar.bz2 strongswan-69837d5baadc61612061290fc94c79fb2625f5be.tar.xz |
support multiple ocsp servers
Diffstat (limited to 'testing/hosts/winnetou/etc/apache2')
-rw-r--r-- | testing/hosts/winnetou/etc/apache2/httpd.conf | 2 | ||||
-rw-r--r-- | testing/hosts/winnetou/etc/apache2/vhosts.d/01_ocsp_vhost.conf | 26 |
2 files changed, 27 insertions, 1 deletions
diff --git a/testing/hosts/winnetou/etc/apache2/httpd.conf b/testing/hosts/winnetou/etc/apache2/httpd.conf index df19b3fe7..41c74453a 100644 --- a/testing/hosts/winnetou/etc/apache2/httpd.conf +++ b/testing/hosts/winnetou/etc/apache2/httpd.conf @@ -212,6 +212,8 @@ KeepAliveTimeout 15 #Listen 12.34.56.78:80 Listen 80 Listen 8880 +Listen 8881 +Listen 8882 # # Dynamic Shared Object (DSO) Support diff --git a/testing/hosts/winnetou/etc/apache2/vhosts.d/01_ocsp_vhost.conf b/testing/hosts/winnetou/etc/apache2/vhosts.d/01_ocsp_vhost.conf index a904a7171..c97c30936 100644 --- a/testing/hosts/winnetou/etc/apache2/vhosts.d/01_ocsp_vhost.conf +++ b/testing/hosts/winnetou/etc/apache2/vhosts.d/01_ocsp_vhost.conf @@ -4,10 +4,34 @@ ServerAdmin root@strongswan.org DocumentRoot /etc/openssl/ocsp ServerName ocsp.strongswan.org - ServerAlias 192.168.0.150 + ServerAlias 192.168.0.150 <Directory "/etc/openssl/ocsp"> Options +ExecCGI </Directory> ErrorLog /var/log/apache2/ocsp/error_log CustomLog /var/log/apache2/ocsp/access_log combined </VirtualHost> + +<VirtualHost *:8881> + ServerAdmin root@research.strongswan.org + DocumentRoot /etc/openssl/research/ocsp + ServerName ocsp.research.strongswan.org + ServerAlias ocsp.strongswan.org 192.168.0.150 + <Directory "/etc/openssl/research/ocsp"> + Options +ExecCGI + </Directory> + ErrorLog /var/log/apache2/ocsp/error_log + CustomLog /var/log/apache2/ocsp/access_log combined +</VirtualHost> + +<VirtualHost *:8882> + ServerAdmin root@sales.strongswan.org + DocumentRoot /etc/openssl/sales/ocsp + ServerName ocsp.sales.strongswan.org + ServerAlias ocsp.strongswan.org 192.168.0.150 + <Directory "/etc/openssl/sales/ocsp"> + Options +ExecCGI + </Directory> + ErrorLog /var/log/apache2/ocsp/error_log + CustomLog /var/log/apache2/ocsp/access_log combined +</VirtualHost> |