From: Dylan William Hardison Date: Sat, 2 Feb 2019 17:10:53 +0000 (-0500) Subject: no bug - fix start_morbo on vagrant X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=6cbefffcb74713614a76cb1f5d82069ffafb663f;p=thirdparty%2Fbugzilla.git no bug - fix start_morbo on vagrant --- diff --git a/scripts/start_morbo b/scripts/start_morbo index ada3255a8..4a0bb3467 100755 --- a/scripts/start_morbo +++ b/scripts/start_morbo @@ -34,9 +34,9 @@ if ($MOJO_LISTEN && -f $cert_file && -f $key_file) { push @PERL5LIB, catdir($BUGZILLA_DIR, qw(local lib perl5)); unshift @PATH, catdir($BUGZILLA_DIR, qw(local bin)); -$BUGZILLA_ALLOW_INSECURE_HTTP //= 1; -$MOJO_REVERSE_PROXY //= $BUGZILLA_DIR ne '/vagrant'; -$LOG4PERL_CONFIG_FILE //= 'log4perl-morbo.conf'; +$BUGZILLA_ALLOW_INSECURE_HTTP = 1; +$MOJO_REVERSE_PROXY = 1 if $BUGZILLA_DIR ne '/vagrant'; +$LOG4PERL_CONFIG_FILE //= 'log4perl-morbo.conf'; my @files = ('Bugzilla.pm', 'Bugzilla', glob('*.cgi'), 'extensions', 'template');