Azure – How to create a csr file for azure web app

azureazure-web-app-servicecsrssl

I need to create a csr file to give it to someone.

The csr file is for a SSL certificate for a azure web app.

When I google I find inconsistent information about where to generate the csr file.

Some sources say: I have to create the csr file on the server the web app is running.

In my case the server on azure is unknown. I can not run anything there…

Or is it ok to create the csr on my local pc with all company data + the subject filled out with the custom domain?

Best Answer

You're able to create a cer-file with the help of the Certreq.exe or OpenSSL tool.

For more details, please have a look at the official documentation how to enable HTTPS for an app in Azure App Service.

Related Topic