in reply to Re^2: Need correct command for the plackup and Thrall SSL enabling process.
in thread Need correct command for the plackup and Thrall SSL enabling process.
Looking at the source of HTTP::Server::PSGI again (have you done so yet?) I can see that expects arguments named ssl_key_file and ssl_cert_file (https://metacpan.org/release/Plack/source/lib/HTTP/Server/PSGI.pm#L53). You seem to be passing the arguments with dashes instead of underscores.
Try this:
plackup -p 5001 -- --ssl --ssl_key_file=self-signedkey.key --ssl_cert_ +file=self-signed.crt --host localhost app.psgi
Hope this helps!
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re^4: Need correct command for the plackup and Thrall SSL enabling process.
by chandantul (Scribe) on May 09, 2021 at 18:43 UTC | |
by 1nickt (Canon) on May 10, 2021 at 01:00 UTC | |
|
Re^4: Need correct command for the plackup and Thrall SSL enabling process.
by chandantul (Scribe) on May 08, 2021 at 23:48 UTC |