Centos6.3下Apache配置https證照訪問
這裡簡單演示一下Apache下基於加密的認證訪問----https加密方式訪問。
1.DNS解析這裡不再贅述了哈,相見本次演示的dns解析情況:
[root@localhost html]# nslookup www.abc.com
Server: 192.168.2.115
Address: 192.168.2.115#53
Name: www.abc.com
Address: 192.168.2.115
2.安裝Apache SSL支援模組:# yum install -y mod_ssl (預設yum安裝httpd是沒有安裝該模組的,安裝後自動生產/etc/httpd/conf.d/ssl.conf檔案)並生成證照。
[root@localhost certs]# pwd
/etc/pki/tls/certs
[root@localhost certs]# ls
ca-bundle.crt index.html localhost.crt Makefile
ca-bundle.trust.crt localhost1.crt make-dummy-cert
[root@localhost certs]# openssl req -utf8 -new -key ../private/localhost.key -x509 -days 3650 -out abc_com.crt
You are about to be asked to enter information that will be incorporated
into your certificate request.
What you are about to enter is what is called a Distinguished Name or a DN.
There are quite a few fields but you can leave some blank
For some fields there will be a default value,
If you enter '.', the field will be left blank.
-----
Country Name (2 letter code) [XX]:CN
State or Province Name (full name) []:510510
Locality Name (eg, city) [Default City]:GZ
Organization Name (eg, company) [Default Company Ltd]:ABC.COM
Organizational Unit Name (eg, section) []:Mr.Zhang
Common Name (eg, your name or your server's hostname) []:www.abc.com
Email Address []:root@abc.com
[root@localhost certs]#
3.配置Apache,基本配置這裡不多說了,下面是配置www.abc.com站點http訪問的情況。
[root@localhost html]# tail -n 8 /etc/httpd/conf/httpd.conf
NameVirtualhost 192.168.2.115:80
<VirtualHost www.abc.com:80>
ServerAdmin webmaster@dummy-host.example.com
DocumentRoot /var/www/html
ServerName www.abc.com
ErrorLog logs/dummy-host.example.com-error_log
CustomLog logs/dummy-host.example.com-access_log common
</VirtualHost>
[root@localhost html]# tail /var/www/html/index.html
www.abc.com
[root@localhost html]#
4.配置Apache支援https訪問www.abc.com站點,編輯 vim /etc/httpd/conf.d/ssl.conf 檔案,制定www.abc.com站點https訪問時的相關資訊。新增下面配置。
<VirtualHost www.abc.com:443>
DocumentRoot "/var/www/html/www.kuteatest.net" #//為了顯示效果,這裡的站點目錄不一樣,一般情況一個域名應該指向同一目錄的。
ServerName www.abc.com:443
ErrorLog logs/ssl_error_log
TransferLog logs/ssl_access_log
LogLevel warn
SSLEngine on
SSLProtocol all -SSLv2
SSLCipherSuite ALL:!ADH:!EXPORT:!SSLv2:RC4+RSA:+HIGH:+MEDIUM:+LOW
SSLCertificateFile /etc/pki/tls/certs/abc_com.crt
SSLCertificateKeyFile /etc/pki/tls/private/localhost.key
<Files ~ "\.(cgi|shtml|phtml|php3?)$">
SSLOptions +StdEnvVars
</Files>
<Directory "/var/www/cgi-bin">
SSLOptions +StdEnvVars
</Directory>
SetEnvIf User-Agent ".*MSIE.*" \
nokeepalive ssl-unclean-shutdown \
downgrade-1.0 force-response-1.0
CustomLog logs/ssl_request_log \
"%t %h %{SSL_PROTOCOL}x %{SSL_CIPHER}x \"%r\" %b"
</VirtualHost>
4.重啟Apache服務,測試訪問。