Replies: 1 comment 1 reply
-
Is it possible to use Stirling |
Beta Was this translation helpful? Give feedback.
1 reply
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
Hi.
I am using Stirling-PDF over ubuntu 22.04 with docker run. Everything work fine, but when I change the port from 8080 to 443 via -p 443:8080, and with this configuration in settings.yml:
local:
server:
port: 443
server:
port: 443
ssl:
key-store: /certs/my-cert.p12
key-store-password: ${my-cert-password}
Obviusly I change the data of my-cert.p12 and my-cert-password
The docker container stops. If I delete this lines in settings.yml, obviusly I get ERR_SSL_PROTOCOL_ERROR
¿How can I put the SSL certificate?
Edit: Solved.
Change configuration file to
server:
ssl:
certificate: /configs/wildcard.crt
certificate-private-key: /configs/wildcardkey.pem
And now it works
Beta Was this translation helpful? Give feedback.
All reactions