From a76cbbcb55a97fa3c68d72f214edbe99475d0dc1 Mon Sep 17 00:00:00 2001 From: "Andreas Burchert (scarya)" Date: Mon, 12 Dec 2011 18:37:58 +0100 Subject: [PATCH] Another small fix in nginx (ssl_client_certificate). Signed-off-by: Andreas Burchert (scarya) --- scripts/jobs/cron_tasks.inc.http.30.nginx.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/jobs/cron_tasks.inc.http.30.nginx.php b/scripts/jobs/cron_tasks.inc.http.30.nginx.php index fa0818ec..17a7c9ee 100644 --- a/scripts/jobs/cron_tasks.inc.http.30.nginx.php +++ b/scripts/jobs/cron_tasks.inc.http.30.nginx.php @@ -226,7 +226,7 @@ class nginx if($row_ipsandports['ssl_ca_file'] != '') { - $this->lighttpd_data[$vhost_filename].= 'ssl_client_certificate ' . makeCorrectFile($row_ipsandports['ssl_ca_file']) . ';' . "\n"; + $this->nginx_data[$vhost_filename].= 'ssl_client_certificate ' . makeCorrectFile($row_ipsandports['ssl_ca_file']) . ';' . "\n"; } } }