Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.
Comment: Add instructions for setting up SSL certificate

...

localhost:8080/swagger-ui.html to access Web Services via Swagger based UI.

Setting up SSL certificate

The best way to obtain SSL certificate is to use certbot. You can get certbot in multiple ways described here.

After installation, you need to obtain raw .pem certificate and convert it to .p12. Do this by running 


Code Block
certbot certonly --standalone 



Code Block
openssl pkcs12 -export -in fullchain.pem -inkey privkey.pem -out keystore.p12 -name tomcat -CAfile chain.pem -caname root


Code Block
server.ssl.key-store=
server.ssl.key-store-password=

 Debugging

In our application we have several different debugging paths depending on the docker environment and what you want to debug.

...