Hello everybody,
I created a droplet (Docker 5:19.03.1~3 on 18.04). I pulled my docker image from docker hub and run it. My docker image contains a Spring boot application. (tomcat embedded). It’s working nice but I want to add https (Let’s encrypt) to my page. I found some documents, tutorials but everybody talks about nginx & apache. Can someone please help me to install https to my spring boot (embedded tomcat) application on my droplet (Ubuntu 18.04.3 LTS bionic) The page is up and running now and I will keep it running while fixing this if possible.
These answers are provided by our Community. If you find them useful, show some love by clicking the heart. If you run into issues leave a comment, or add your own answer to help others.
I follow the instructions but having problems. Let me tell you about my process. I just created a new droplet (Docker 5:19.03.1~3 on 18.04). Then I opened an SSH into my droplet. Logged in as root. I run the command to pull and run my docker image from the docker hub. I logged in my Godaddy account and updated A record to pointing my new droplet. At this point, when I browse into gizartblog.com everything works just fine.
Now, In my ssh console I ran the command in the current folder (root):
Inside newly-created certbot folder, I ran
I get this error after this command:
I run this command to run my docker image:
This comment has been deleted
Hello,
I would suggest checking this answer here.
What they are suggesting is the following:
https://github.com/certbot/certbot
The SSL would be stored at
/etc/letsencrypt/live/example.com
. Spring Boot expectsPKCS#12
formatted file. So t convert the certificate you could do the following:Go to the
/etc/letsencrypt/live/example.com
directory.The file
keystore.p12
with PKCS12 is now generated in/etc/letsencrypt/live/example.com
Then you have to configure your Spring Boot app. In your
application.properties
file and put the following properties there:I would recommend going through the two original articles as well:
Hope that this helps! Regards, Bobby