SSL Setup [Self Signed]

 

Scenario:

Create and setup SSL certificate on IIS for dev testing

Solution:

  •  IIS -> Server Certificates- Create Self-Signed Certificate -> MySelfCertificate
  • To create CSR 
    • IIS -> Server Certificates -> Create Certificate
    • Common name = www.mytestapp.local [Should match domain]
    • [bitlength] - 4096
  •  MMC->File -> Add -Remove SnapIn -> Certificates->Computer Account -> Certificates -> Personal [also our cert should show up in in Trusted RootCertification  Authorities]
  • IIS -> Your site -> Bindings- port 443 -> Certificate [MySelfCertificate]
  • Test on Firefox/IE [Chrome might give error as it is not CA verified]
Other Notes:
  • Open SSL
  • https://github.com/openssl/openssl

No comments:

Post a Comment

Move Github Sub Repository back to main repo

 -- delete .gitmodules git rm --cached MyProject/Core git commit -m 'Remove myproject_core submodule' rm -rf MyProject/Core git remo...