카테고리 없음
Generating an SSL Certificate with Apache + mod_ssl
우와신난다
2008. 10. 10. 11:24
Building Apache wit mod_ssl and Other modules
- http://slacksite.com/apache/webserver.php
Generating an SSL Certificate
- http://slacksite.com/apache/certificate.php
Short cut.
openssl install
Generating a Private Key and CSR
#> openssl genrsa -des3 -rand file1:file2:file3:file4:file5 -out name.key
#> openssl rsa -in name.key -out name.pem
#> openssl req -new -key name.key -out name.csr
- http://slacksite.com/apache/webserver.php
Generating an SSL Certificate
- http://slacksite.com/apache/certificate.php
Short cut.
openssl install
#> yum install openssl
Generating a Private Key and CSR
#> openssl genrsa -des3 -rand file1:file2:file3:file4:file5 -out name.key
#> openssl rsa -in name.key -out name.pem
#> openssl req -new -key name.key -out name.csr