<?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>Fri, 26 Feb 2010 02:41:30 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9.1</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<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>admin</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[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 : 
subnet -> deny from 192.168.1.0/24
subnet wild cards ->  deny from 192.168.*.*
domain -> deny from domain\.com [...]]]></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[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
    [...]]]></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[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[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 :
openssl req -new -key server.key -out server.csr
Sign the CA :
openssl x509 -req -days 365 -in server.csr -CA ca.crt -CAkey ca.key -set_serial 01 [...]]]></description>
		<wfw:commentRss>http://www.101tech.net/2007/06/13/apache-ssl/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
