After configuring SSL for SharePoint 2013, you may get the blank screen when you open the site in the
browser.
After Investigating and checking
the Logs in Event viewer, got the error for the SSL
Errors: SSL policy
errors have been encountered. Error code '0x2'..
Go to your SharePoint site
web.config and add the following line within <system.net> tag:
<settings>
<servicePointManager
checkCertificateName=”false”
checkCertificateRevocationList=”false”
/>
</settings>
That fixed for me... !!!