From 1c37f3e5145d100c31897a58b56571c1a38c8eb9 Mon Sep 17 00:00:00 2001 From: lars-hagen Date: Wed, 25 Dec 2019 23:49:24 +0100 Subject: [PATCH] Added a listener on 443, should pass travis --- conf/httpd_config.conf | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) diff --git a/conf/httpd_config.conf b/conf/httpd_config.conf index 224d0a2..d9174bf 100644 --- a/conf/httpd_config.conf +++ b/conf/httpd_config.conf @@ -225,9 +225,16 @@ listener HTTP { secure 0 } +listener HTTPS { + address *:443 + secure 1 + keyFile /usr/local/lsws/admin/conf/webadmin.key + certFile /usr/local/lsws/admin/conf/webadmin.crt +} + vhTemplate centralConfigLog { templateFile conf/templates/ccl.conf - listeners Default, HTTP + listeners Default, HTTP, HTTPS member localhost { vhDomain localhost }