<?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>Ramblings from MostlyChris &#187; Apache</title>
	<atom:link href="http://blog.mostlychris.com/category/apache/feed/" rel="self" type="application/rss+xml" />
	<link>http://blog.mostlychris.com</link>
	<description>Tech stuff and a bit more</description>
	<lastBuildDate>Fri, 06 Aug 2010 07:13:38 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0.1</generator>
		<item>
		<title>Adding mod_deflate to Apache</title>
		<link>http://blog.mostlychris.com/2010/08/adding-mod_deflate-to-apache/</link>
		<comments>http://blog.mostlychris.com/2010/08/adding-mod_deflate-to-apache/#comments</comments>
		<pubDate>Fri, 06 Aug 2010 07:05:15 +0000</pubDate>
		<dc:creator>Chris</dc:creator>
				<category><![CDATA[Apache]]></category>
		<category><![CDATA[compression]]></category>
		<category><![CDATA[mod_deflate]]></category>

		<guid isPermaLink="false">http://blog.mostlychris.com/?p=712</guid>
		<description><![CDATA[mod_deflate allows apache to compress files and deliver them to browsers that can use compressed files. This saves on bandwidth and renders page loads faster. It's a fairly simple process to do this. You need to have write access to the apache config files and need to be able to create a new conf file. [...]]]></description>
		<wfw:commentRss>http://blog.mostlychris.com/2010/08/adding-mod_deflate-to-apache/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Installing APC</title>
		<link>http://blog.mostlychris.com/2009/11/installing-apc/</link>
		<comments>http://blog.mostlychris.com/2009/11/installing-apc/#comments</comments>
		<pubDate>Wed, 18 Nov 2009 13:57:54 +0000</pubDate>
		<dc:creator>Chris</dc:creator>
				<category><![CDATA[Apache]]></category>
		<category><![CDATA[apc]]></category>
		<category><![CDATA[pecl]]></category>

		<guid isPermaLink="false">http://blog.mostlychris.com/?p=588</guid>
		<description><![CDATA[Follow these steps to install APC on a RHEL 5 server. 1. Install php-devel for phpize (if not installed). yum install php-devel 2. Install the apache devel pkgs for apxs (if needed). yum install httpd-devel 3. Make /tmp executable. mount -o remount,exec /tmp 4. Set the memory limit in /usr/share/pear/pearcmd.php to 16M. vi /usr/share/pear/pearcmd.php @ini_set&#40;'memory_limit', [...]]]></description>
		<wfw:commentRss>http://blog.mostlychris.com/2009/11/installing-apc/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Separate VHOST files on Webmin Managed Server</title>
		<link>http://blog.mostlychris.com/2009/04/separate-vhost-files-on-webmin-managed-server/</link>
		<comments>http://blog.mostlychris.com/2009/04/separate-vhost-files-on-webmin-managed-server/#comments</comments>
		<pubDate>Sun, 19 Apr 2009 22:11:59 +0000</pubDate>
		<dc:creator>Chris</dc:creator>
				<category><![CDATA[Apache]]></category>
		<category><![CDATA[configuration]]></category>
		<category><![CDATA[vhost]]></category>
		<category><![CDATA[webmin]]></category>

		<guid isPermaLink="false">http://blog.mostlychris.com/?p=418</guid>
		<description><![CDATA[I recently ran across a request to place all vhost configurations in separate files. Here are the steps I followed to make this happen. Step 4 is only necessary if you have existing virtual hosts in the main or a single apache configuration file. 1. I created the virtual_sites directory under /etc/httpd/conf.d/ 2. I set [...]]]></description>
		<wfw:commentRss>http://blog.mostlychris.com/2009/04/separate-vhost-files-on-webmin-managed-server/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Basic Site Redirects/Rewrites</title>
		<link>http://blog.mostlychris.com/2009/03/super-basic-site-redirect/</link>
		<comments>http://blog.mostlychris.com/2009/03/super-basic-site-redirect/#comments</comments>
		<pubDate>Sat, 21 Mar 2009 12:52:24 +0000</pubDate>
		<dc:creator>Chris</dc:creator>
				<category><![CDATA[Apache]]></category>
		<category><![CDATA[redirect]]></category>
		<category><![CDATA[rewrite]]></category>

		<guid isPermaLink="false">http://blog.mostlychris.com/?p=359</guid>
		<description><![CDATA[This is a super simple site redirect. This, of course, can get much more complicated than what is shown here. Place this in the apache configuration file (non-Plesk boxen) or in a .htaccess file. Options +FollowSymLinks RewriteEngine on RewriteRule &#40;.*&#41; http://www.newdomain.com/$1 &#91;R=301,L&#93; &#8212;&#8211; If you want to redirect a site using the httpd.conf file inside [...]]]></description>
		<wfw:commentRss>http://blog.mostlychris.com/2009/03/super-basic-site-redirect/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Apache Server Hits</title>
		<link>http://blog.mostlychris.com/2009/03/number-of-hits-from-the-apache-log-files/</link>
		<comments>http://blog.mostlychris.com/2009/03/number-of-hits-from-the-apache-log-files/#comments</comments>
		<pubDate>Sat, 21 Mar 2009 12:41:14 +0000</pubDate>
		<dc:creator>Chris</dc:creator>
				<category><![CDATA[Apache]]></category>
		<category><![CDATA[httpd]]></category>
		<category><![CDATA[load]]></category>

		<guid isPermaLink="false">http://blog.mostlychris.com/?p=348</guid>
		<description><![CDATA[Use this little one liner to grab the number of hits from the apache access logs. DATE=`date +%d.%b.%Y`':';for i in `lsof -p $&#40;ps faxwwwu&#124;awk '$1 ~ /^root$/ &#38;&#38; $11 ~ /httpd$/ {print $2&#124;&#34;head -1&#34;}' &#41;&#124; awk '$9 ~ /access_log$/ {print $9&#124; &#34;sort -u&#34;}'`; do echo &#34;&#8212;&#8212;-&#34;$i&#34;&#8212;&#8212;&#34;$DATE;awk '$4 ~ /^.'$DATE'/ {hit[substr($4,2,2)&#34;\t&#34;substr($4,14,2)&#34;.&#34;substr($4,17,1)]++;ip[$1]++} END { for (i in [...]]]></description>
		<wfw:commentRss>http://blog.mostlychris.com/2009/03/number-of-hits-from-the-apache-log-files/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Memory Issues During PECL Package Install</title>
		<link>http://blog.mostlychris.com/2009/03/memory-issues-during-pecl-package-install/</link>
		<comments>http://blog.mostlychris.com/2009/03/memory-issues-during-pecl-package-install/#comments</comments>
		<pubDate>Sat, 21 Mar 2009 03:48:44 +0000</pubDate>
		<dc:creator>Chris</dc:creator>
				<category><![CDATA[Apache]]></category>
		<category><![CDATA[Pear]]></category>
		<category><![CDATA[memory]]></category>
		<category><![CDATA[pecl]]></category>

		<guid isPermaLink="false">http://blog.mostlychris.com/?p=344</guid>
		<description><![CDATA[Recently, I ran into an error while attempting to install a PECL package on a Redhat 5.3 64bit server. &#8212;- Fatal error: Allowed memory size of 8388608 bytes exhausted (tried to allocate 23040 bytes) in /usr/share/pear/PEAR/Builder.php on line 263 &#8212;- I checked the memory limit setting in /etc/php.ini and it was set for 16M so [...]]]></description>
		<wfw:commentRss>http://blog.mostlychris.com/2009/03/memory-issues-during-pecl-package-install/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
