Advertisement
opexxx

openssl_CA

Aug 12th, 2013
265
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Bash 0.56 KB | None | 0 0
  1. Selbstsigniertes Zertifikat
  2. Wechseln zu: Navigation, Suche
  3. Selbstsigniertes Zertifikat erstellen
  4.  
  5. So erstellt man ein selbstsigniertes Zertifikat:
  6.  
  7. openssl genrsa 4096 > host.key
  8. chmod 400 host.key
  9. openssl req -new -x509 -nodes -sha1 -days 365 -key host.key > host.cert
  10.  
  11. Dabei muss als Common Name (CN) der Hostname angegeben werden. Optional:
  12.  
  13. cat host.cert host.key > host.pem
  14. chmod 400 host.pem
  15.  
  16. Die Einträge in Apache:
  17.  
  18. <VirtualHost *:443>
  19. ...
  20. SSLCertificateKeyFile conf/ssl.key/host.key
  21. SSLCertificateFile conf/ssl.key/host.cert
  22. ...
  23. </VirtualHost>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement