Guest User

Untitled

a guest
Jan 16th, 2018
97
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.02 KB | None | 0 0
  1. To get the Certificate so that you can import to other programs:
  2. 1. Open Certificates by running ”certmgr.msc” in cmd
  3. 2. Go to “Trusted Root Certification Authorities” > “Certificates”
  4. 3. Right click internet.> Export
  5. 4. Select “Base-64 encoded X.509 (.CER)”
  6. 5. Save to c:/temp/internet.cer
  7.  
  8. To get Firefox working:
  9. 1. In the address bar, enter “about:preferences#privacy”
  10. 2. “View Certificates” > “Authorities” > “Import”
  11. 3. Select “c:/temp/internet.cer”
  12. 4. Select the trust type of “Trust this CA to identify websites”, then click “Ok”
  13.  
  14. To get GIT working:
  15. 1. Open Cmd as admin
  16. 2. git config --global http.sslCAInfo “c:/temp/internet.cer”
  17. Do not run git config http.sslVerify "false"
  18.  
  19. To get NPM working:
  20. 1. Open Cmd as admin
  21. 2. npm config set cafile “c:/temp/internet.cer”
  22. Do not run npm config set strict-ssl false
  23.  
  24. To get Bower working
  25. 1. Open Cmd as admin
  26. 2. cd %UserProfile%
  27. 3. echo {"ca": "C:\temp\internet.cer","strict-ssl":false} > .bowerrc
Add Comment
Please, Sign In to add comment