From 8694edb1b628390e2b66289ace9d77ccf8108269 Mon Sep 17 00:00:00 2001 From: Isaac Connor Date: Fri, 10 Nov 2017 16:23:38 -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'; }