An Azure platform as a service offer that is used to deploy web and cloud applications.
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