<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>O!Hacker Blog &#187; Linux</title>
	<atom:link href="http://ohacker.com/category/linux/feed/" rel="self" type="application/rss+xml" />
	<link>http://ohacker.com</link>
	<description>anything to hack</description>
	<lastBuildDate>Thu, 12 Aug 2010 05:17:18 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0</generator>
		<item>
		<title>Linux apache SSL 安装</title>
		<link>http://ohacker.com/2010/02/01/linux-apache-ssl-install/</link>
		<comments>http://ohacker.com/2010/02/01/linux-apache-ssl-install/#comments</comments>
		<pubDate>Tue, 02 Feb 2010 06:03:40 +0000</pubDate>
		<dc:creator>Tony</dc:creator>
				<category><![CDATA[Linux]]></category>
		<category><![CDATA[apache]]></category>
		<category><![CDATA[https]]></category>
		<category><![CDATA[ssl]]></category>

		<guid isPermaLink="false">http://ohacker.com/?p=226</guid>
		<description><![CDATA[Linux apache mod_ssl 安装 安装： 安装apache with mod_ssl 首先必须保证服务器安装的apache支持mod_ssl。 解压缩apache : tar zvxf apache.tar.gz 编译apache: 进入解压缩后的apache目录运行一下命令 ./configure &#8211;prefix=/home/user_name/apache –enable-shared=all 注：首先，–prefix后面指的是你想要安装后apache的根目录，其次这个目录的最后一个字符不可以是”/”,比如/home/mpsp/apache/ 就是错的，正确的写法是/home/mpsp/apache。&#8211;enable-shared=all这个选项是以shared模式开启所有模块，如果希望关闭某些模块只用注释掉{ROOT_APACHE}/conf/httpd.conf中的相应模块即可。 运行 make 运行 make install 安装apache成功之后，进入{ROOT_APACHE}/conf/httpd.conf文件进行配置。针对ssl的配置主要是以下几点 查看SSL是否安装。 如果ssl_module 安装好了，以下这行应该存在，并且没有被注释掉。 LoadModule ssl_module modules/mod_ssl.so #之后再去查看以下这几行是否被注释掉 &#60;IfModule mod_ssl.c&#62; Include conf/ssl.conf &#60;/IfModule&#62; 如果被注释掉了，就打开注释，一定要保证这行。 这几行的意思是加载conf/ssl.conf这个配置文件。下面去修改ssl.conf这个文件。 因为常用的HTTPS的端口是443，所以需要修改ssl.conf中的SSL Virtual Host Context 找到 在这个VirtualHost下找到SSLEngine on这行，确保这行没有被注释掉。 找到SSLSertificateFile这行，这个参数指定了crt文件的位置。例如SSLCertificateFile /home/mpsp/apache_wx/conf/ssl.crt/www.domain.com.crt。 找到SSLSertificateKeyFile这行，这个参数指定了key文件的位置。例如：在开发服务器上这行是 SSLCertificateKeyFile /home/mpsp/apache_wx/conf/ssl.key/www.domain.com.key 另外还要加入SSLCACertificatePath 和SSLCACertificateFile [...]]]></description>
		<wfw:commentRss>http://ohacker.com/2010/02/01/linux-apache-ssl-install/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
