aboutsummaryrefslogtreecommitdiffstats
path: root/testing/hosts/winnetou
diff options
context:
space:
mode:
authorAndreas Steffen <andreas.steffen@strongswan.org>2007-04-05 17:08:51 +0000
committerAndreas Steffen <andreas.steffen@strongswan.org>2007-04-05 17:08:51 +0000
commit69837d5baadc61612061290fc94c79fb2625f5be (patch)
tree4ad0a02722e51ffc5c4ec8adeefed9464245b240 /testing/hosts/winnetou
parent8883eef7b85d8cbf0daf6064d12971b35dad9921 (diff)
downloadstrongswan-69837d5baadc61612061290fc94c79fb2625f5be.tar.bz2
strongswan-69837d5baadc61612061290fc94c79fb2625f5be.tar.xz
support multiple ocsp servers
Diffstat (limited to 'testing/hosts/winnetou')
-rw-r--r--testing/hosts/winnetou/etc/apache2/httpd.conf2
-rw-r--r--testing/hosts/winnetou/etc/apache2/vhosts.d/01_ocsp_vhost.conf26
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>