<?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>101TECH &#187; Apache</title>
	<atom:link href="http://www.101tech.net/category/apache/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.101tech.net</link>
	<description>IT Solutions Done Right!</description>
	<lastBuildDate>Tue, 03 Jan 2012 16:12:37 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=</generator>
		<item>
		<title>control ip access to apache via .htaccess</title>
		<link>http://www.101tech.net/2009/07/06/control-ip-access-to-apache-via-htaccess/</link>
		<comments>http://www.101tech.net/2009/07/06/control-ip-access-to-apache-via-htaccess/#comments</comments>
		<pubDate>Mon, 06 Jul 2009 07:42:31 +0000</pubDate>
		<dc:creator>moti</dc:creator>
				<category><![CDATA[Apache]]></category>
		<category><![CDATA[News]]></category>
		<category><![CDATA[Sys Admin]]></category>

		<guid isPermaLink="false">http://www.101tech.net/?p=277</guid>
		<description><![CDATA[<a href="http://www.101tech.net/2009/07/06/control-ip-access-to-apache-via-htaccess/" title="control ip access to apache via .htaccess"></a>1. Allow only specific ip address : order allow,deny deny from all allow from 192.168.1.1 allow from 192.168.1.2 2. Block specific ip address : order deny,allow allow from all deny from 192.168.1.1 deny from 192.168.1.2 you can substitute ip for &#8230;<p class="read-more"><a href="http://www.101tech.net/2009/07/06/control-ip-access-to-apache-via-htaccess/">Read more &#187;</a></p>]]></description>
		<wfw:commentRss>http://www.101tech.net/2009/07/06/control-ip-access-to-apache-via-htaccess/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Fix mod_rewrite erros in apache</title>
		<link>http://www.101tech.net/2009/03/12/fix-mod_rewrite-erros-in-apache/</link>
		<comments>http://www.101tech.net/2009/03/12/fix-mod_rewrite-erros-in-apache/#comments</comments>
		<pubDate>Thu, 12 Mar 2009 13:22:59 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Apache]]></category>
		<category><![CDATA[FreeBSD]]></category>
		<category><![CDATA[News]]></category>

		<guid isPermaLink="false">http://www.101tech.net/wordpress/2009/03/12/fix-mod_rewrite-erros-in-apache/</guid>
		<description><![CDATA[<a href="http://www.101tech.net/2009/03/12/fix-mod_rewrite-erros-in-apache/" title="Fix mod_rewrite erros in apache "></a>change : RewriteEngine On RewriteCond %{REQUEST_METHOD} ^TRACE RewriteRule .* &#8211; [F] To this: RewriteEngine On RewriteCond %{REQUEST_METHOD} ^TRACE RewriteRule .* &#8211; [F] RewriteLog /var/log/apache2/rewrite.log RewriteLogLevel 0 as described here]]></description>
		<wfw:commentRss>http://www.101tech.net/2009/03/12/fix-mod_rewrite-erros-in-apache/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Remove pass-phrase prompt when loading apache-ssl</title>
		<link>http://www.101tech.net/2008/01/16/remove-pass-phrase-prompt-when-loading-apache-ssl/</link>
		<comments>http://www.101tech.net/2008/01/16/remove-pass-phrase-prompt-when-loading-apache-ssl/#comments</comments>
		<pubDate>Wed, 16 Jan 2008 17:32:29 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Apache]]></category>
		<category><![CDATA[Open Source]]></category>

		<guid isPermaLink="false">http://www.101tech.net/wordpress/2008/01/16/remove-pass-phrase-prompt-when-loading-apache-ssl/</guid>
		<description><![CDATA[<a href="http://www.101tech.net/2008/01/16/remove-pass-phrase-prompt-when-loading-apache-ssl/" title="Remove pass-phrase prompt when loading apache-ssl"></a>Somehow , I always forget this &#8230; openssl rsa -in server.key -out server.pem server.pem and server.key MUST be 0600 and owned by root !]]></description>
		<wfw:commentRss>http://www.101tech.net/2008/01/16/remove-pass-phrase-prompt-when-loading-apache-ssl/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Apache SSL</title>
		<link>http://www.101tech.net/2007/06/13/apache-ssl/</link>
		<comments>http://www.101tech.net/2007/06/13/apache-ssl/#comments</comments>
		<pubDate>Thu, 14 Jun 2007 02:42:14 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Apache]]></category>
		<category><![CDATA[Unix]]></category>

		<guid isPermaLink="false">http://www.101tech.net/wordpress/misc-unix/apache-ssl/</guid>
		<description><![CDATA[<a href="http://www.101tech.net/2007/06/13/apache-ssl/" title="Apache SSL"></a>Notes on creating an apache SSL cert Create CA : openssl genrsa -des3 -out ca.key 4096 openssl req -new -x509 -days 365 -key ca.key -out ca.crt Gen Server Key : openssl genrsa -des3 -out server.key 4096 Gen Cert Request : &#8230;<p class="read-more"><a href="http://www.101tech.net/2007/06/13/apache-ssl/">Read more &#187;</a></p>]]></description>
		<wfw:commentRss>http://www.101tech.net/2007/06/13/apache-ssl/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

