From 69837d5baadc61612061290fc94c79fb2625f5be Mon Sep 17 00:00:00 2001 From: Andreas Steffen Date: Thu, 5 Apr 2007 17:08:51 +0000 Subject: [PATCH] support multiple ocsp servers --- testing/hosts/winnetou/etc/apache2/httpd.conf | 2 ++ .../etc/apache2/vhosts.d/01_ocsp_vhost.conf | 26 ++++++++++++++++++- 2 files changed, 27 insertions(+), 1 deletion(-) 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 Options +ExecCGI ErrorLog /var/log/apache2/ocsp/error_log CustomLog /var/log/apache2/ocsp/access_log combined + + + ServerAdmin root@research.strongswan.org + DocumentRoot /etc/openssl/research/ocsp + ServerName ocsp.research.strongswan.org + ServerAlias ocsp.strongswan.org 192.168.0.150 + + Options +ExecCGI + + ErrorLog /var/log/apache2/ocsp/error_log + CustomLog /var/log/apache2/ocsp/access_log combined + + + + ServerAdmin root@sales.strongswan.org + DocumentRoot /etc/openssl/sales/ocsp + ServerName ocsp.sales.strongswan.org + ServerAlias ocsp.strongswan.org 192.168.0.150 + + Options +ExecCGI + + ErrorLog /var/log/apache2/ocsp/error_log + CustomLog /var/log/apache2/ocsp/access_log combined +