Centos6.3下Apache配置基于加密的认证https加密证书访问


这里简单演示一下Apache下基于加密的认证访问----https加密方式访问。

1.DNS解析解析情况:

[root@localhost html]# nslookup www.jb51.net

Server: 192.168.2.115

Address: 192.168.2.115#53

Name: www.jb51.net

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 -outabc_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.jb51.net

Email Address []:root@abc.com

[root@localhost certs]#

3.配置Apache,基本配置这里不多说了,下面是配置www.jb51.net站点http访问的情况。

[root@localhost html]# tail -n 8 /etc/httpd/conf/httpd.conf

NameVirtualhost 192.168.2.115:80

ServerAdmin webmaster@dummy-host.example.com

DocumentRoot /var/www/html

ServerName www.jb51.net

ErrorLog logs/dummy-host.example.com-error_log

CustomLog logs/dummy-host.example.com-access_log common


[root@localhost html]#tail /var/www/html/index.html

www.jb51.net

[root@localhost html]#

4.配置Apache支持https访问www.jb51.net站点,编辑vim /etc/httpd/conf.d/ssl.conf文件,制定www.jb51.net站点https访问时的相关信息。添加下面配置。

DocumentRoot "/var/www/html/www.jb51.net" #//为了显示效果,这里的站点目录不一样,一般情况一个域名应该指向同一目录的。

ServerName www.jb51.net: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

SSLOptions +StdEnvVars


SSLOptions +StdEnvVars


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"


5.重启Apache服务,测试访问。

测试http访问的结果

测试https访问的结果

查看证书信息和自建crt信息一致

https访问的最终结果

分享十个便宜VPS主机-VPS服务器建站和搭建应用服务体验

前几天分享了新手建站十大免费空间,看那篇文章的朋友基本上都是从免费空间中走出来了,十个免费空间至少有七、八个是曾经用过的。但是自从花钱购买了付费的虚拟主机和vps主机后,就再也怎么不关心免费空间了,除非是偶尔想用qq到“外”面透透气。从目前的主机和vps价格来...
VPS服务器VPS主机虚拟主机

网站防护可以采用高防CDN吗?

网站防护采用高防CDN怎么样?网站防护可以采用高防CDN。高防CDN接入云防御,智能防护,隐藏源站IP,防止黑客获取源站真实IP,保护网站远离DDOS攻击。确保加速性能的前提下全面提升网站安全性。网站防护采用高防CDN有以下几个优势:1.稳定快速有效防御DDo...
服务器安全高防cdn网站防护

高防服务器防御的原理详解

随着网络攻击越来越严重,现在高防服务器也逐渐受到很多企业用户的重视。一般高防服务器除了具备普通服务器的运行功能,还具有防攻击、抗病毒等方面的能力,对于网络攻击具有一定的防护作用。但是虽然很多用户都会选择使用高防服务器,但是很多用户对于高防服务器防御的原理却没有...
服务器安全高防服务器服务器防御

手把手教您在 Linux 上使用 GPG 加解密文件

GnuPG,俗称 GPG,是一个非常通用的工具,被广泛用作电子邮件、信息、文件或任何你需要安全地发送给别人的东西的加密行业标准。学习使用 GPG 很容易,你可以在几分钟内就学会使用它。在本教程中,我将告诉你如何用 GPG 加密和解密文件。这是一个简单的教程,你...
linux加解密GPG