I use Mojolicious for a web application that requires an encrypted connection, but I do not know how to add SSL support to Mojolicious.
My colleague sent me the following: domain.key, domain-bundle.crt, domain.crt files
and my Mojolicious startup looks like this:
sub startup { my $self = shift; $self->secrets(['secretphrase']); $self->config(hypnotoad => {listen => ['http://*:80']});
How can I add HTTPS support without using a reverse proxy
source share