You have an
exchange 2013, after some unknown event nobody can get to OWA or ECP (or any other
IIS based resource including outlook.)  Instead, users get a login screen then a blank
page.  In the system event log, you see
hundreds of id 15021 on the source HttpEvent that say “An error occurred while using SSL configuration
for endpoint 0.0.0.0:444.  The error
status code is contained within the returned data.”  
-         
Open
the Command Prompt
-         
Run-
netsh http show sslcert
-         
This
will show the certs, copy and paste this information into notepad.  Under     IP:port 
 : 127.0.0.1:443, note the
certificate hash and application ID.
-         
Run
this command-  (Yes, I know there is no
:444 listed in the output from the earlier command.)
netsh http delete sslcert ipport=0.0.0.0:444
-         
Run
this command.  Replace certhas with the
certificate hash and appid with the application ID you saved in notepad.
netsh http add sslcert ipport=0.0.0.0:444
certhash=123123123123123 appid="{123123123123-1231231235}"
-         
Reboot
the server.
