You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
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:
reacted with thumbs up emoji reacted with thumbs down emoji reacted with laugh emoji reacted with hooray emoji reacted with confused emoji reacted with heart emoji reacted with rocket emoji reacted with eyes emoji
-
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