diff --git a/wethepeople.pl b/wethepeople.pl index 1de9328..143bc02 100755 --- a/wethepeople.pl +++ b/wethepeople.pl @@ -5,12 +5,13 @@ use Mojolicious::Lite; get '/' => sub { my ($c) = @_; my $hostHeader = $c->req->headers->host(); + my $scheme = $c->req->url->base->scheme(); if ($hostHeader =~ /www.wethepeople.win(|:[0-9]{1,5})/) { $c->render() } else { - $c->redirect_to('http://www.wethepeople.win') + $c->redirect_to("$scheme://www.wethepeople.win") } } => 'index';