From ce8350cbefca27057c9f8078a3a57e12f175757b Mon Sep 17 00:00:00 2001 From: Isaac Connor Date: Fri, 10 Nov 2017 16:22:58 -0500 Subject: [PATCH] add :80 default --- utils/generate_apache_config.pl | 2 ++ 1 file changed, 2 insertions(+) diff --git a/utils/generate_apache_config.pl b/utils/generate_apache_config.pl index 7fac19bc3..9d9e94e10 100755 --- a/utils/generate_apache_config.pl +++ b/utils/generate_apache_config.pl @@ -37,6 +37,8 @@ if ( $$opts{protocol} eq 'https' ) { die "https requires a server_name"; } $VirtualHostPorts = ' *:443'; +} else { + $VirtualHostPorts = ' *:80'; }