Share via

Cloud Service - Extending Support - Reboot loosing SSL website bindings

Jon Elster 0 Reputation points
2026-03-22T13:00:24.14+00:00

I have website running on a cloud service. It seems every time the system is rebooted. I lose my SSL binding and installed certificates. The site comes pack up but the certs are missing. and the site appears ' Unsecure'. How can I keep all my settings? Where Can I put files that I view on a reboot.

thx

Azure Cloud Services
Azure Cloud Services

An Azure platform as a service offer that is used to deploy web and cloud applications.


1 answer

Sort by: Most helpful
  1. Alex Burlachenko 19,695 Reputation points Volunteer Moderator
    2026-03-23T07:36:25.9566667+00:00

    Jon Elster hi and thx for join us at Q&A,

    ur basically configuring stuff on a box that Azure nukes on reboot. cloud services arent real persistent VMs, they get reimaged and anything u did manually in IIS or cert store just disappears so what ur seeing is expected. reboot > instance rebuilt > no cert > site looks unsecured fix is not about saving files somewhere magic. u gotta stop doing manual changes entirely. everything has to come from deployment or startup either define the cert in ur service config and upload it to the cloud service, then bind it in csdef so IIS gets it every time the role spins up or just script the whole thing with a startup task. install the pfx, run appcmd, recreate the https binding on boot. ugly but works and yeah if u copied certs or configs into C drive hoping they survive nope. thats temp disk, gone every cycle tbh if u still on cloud services classic, thats the real problem. this model is ancient and painful. app service or even vm scale sets will save u a lot of time and sanity

    Right now its 99 percent just manual config getting wiped every reboot.

    rgds,

    Alex

    0 comments No comments

Your answer

Answers can be marked as 'Accepted' by the question author and 'Recommended' by moderators, which helps users know the answer solved the author's problem.