SSL configuration in Microsoft Azure for Java projects running in tomcat

1

I need to do an HTTPS configuration in a java project in azure. In the project I use spring security and tomcat. I looked at many sites how to make the configuration but found different information, which left me a little lost and tried to configure in several ways.

I made the configuration on tomcat 9 to accept request on port 8443 https and I used the keytool to generate a csr and then used it to get the CA Goodaddy certificate. There I was able to download 3 files to tomcat and used the keytool to set root the main certificate and brokers.

I imagine this is the main configuration I've done, but I have tried other things too. If someone who has already set up https in azure knows how to step-by-step what should be done to get a certified java project, I will be very grateful.

    
asked by anonymous 19.12.2016 / 20:44

1 answer

1

As discussed in the comments, to add an SSL certificate using Azure App Service WebApp, just go to the SSL Certificates option, upload your certificate and you're done. You can now access it using HTTPS.

    
02.01.2017 / 11:27