<?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>MNX Solutions &#187; Apache</title>
	<atom:link href="http://www.mnxsolutions.com/category/apache/feed" rel="self" type="application/rss+xml" />
	<link>http://www.mnxsolutions.com</link>
	<description>IT consulting and managed services</description>
	<lastBuildDate>Sun, 11 Jul 2010 17:50:43 +0000</lastBuildDate>
	

<!-- Debugging help, do not remove -->
<meta name="Framework" content="Kpress" />
<meta name="Theme Version" content="1" />
<meta name="Framework Version" content="1.01" />


	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>CentOS5 and PHP52 upgrade rpms</title>
		<link>http://www.mnxsolutions.com/apache/centos5-and-php52-upgrade-rpms.html</link>
		<comments>http://www.mnxsolutions.com/apache/centos5-and-php52-upgrade-rpms.html#comments</comments>
		<pubDate>Fri, 29 Jan 2010 16:48:07 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Apache]]></category>
		<category><![CDATA[Linux]]></category>
		<category><![CDATA[Mysql]]></category>
		<category><![CDATA[PHP]]></category>
		<category><![CDATA[RHEL]]></category>
		<category><![CDATA[rpm]]></category>
		<category><![CDATA[upgrade]]></category>

		<guid isPermaLink="false">http://www.mnxsolutions.com/?p=736</guid>
		<description><![CDATA[We encounter many scenarios where using the latest version of PHP is required.  No great way, aside from downloading the PHP5 source and compiling, is available. That is, until you discover then IUS Community Project.

What is the IUS Community Project?
The IUS Community Project is an effort to package rpms of the latest stable versions [...]]]></description>
		<wfw:commentRss>http://www.mnxsolutions.com/apache/centos5-and-php52-upgrade-rpms.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Great security and auditing resource for your network</title>
		<link>http://www.mnxsolutions.com/apache/great-security-and-auditing-resource-for-your-network.html</link>
		<comments>http://www.mnxsolutions.com/apache/great-security-and-auditing-resource-for-your-network.html#comments</comments>
		<pubDate>Tue, 12 May 2009 14:23:50 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Apache]]></category>
		<category><![CDATA[Linux]]></category>
		<category><![CDATA[Security]]></category>
		<category><![CDATA[audit]]></category>
		<category><![CDATA[scripts]]></category>

		<guid isPermaLink="false">http://www.mnxsolutions.com/blog/apache/great-security-and-auditing-resource-for-your-network.html</guid>
		<description><![CDATA[The Center for Internet Security  has a great list of security configuration and audit guidelines.
A great resource comprised of 40+ consensus Security Configuration Benchmarks for Operating Systems, Middleware, Software Applications and Network Devices.
The Benchmarks are:

Recommended technical control rules/values for hardening operating systems, middleware and software applications, and network devices;
Unique, because the recommendations are defined via [...]]]></description>
		<wfw:commentRss>http://www.mnxsolutions.com/apache/great-security-and-auditing-resource-for-your-network.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Securing your Linux server</title>
		<link>http://www.mnxsolutions.com/apache/securing-your-server.html</link>
		<comments>http://www.mnxsolutions.com/apache/securing-your-server.html#comments</comments>
		<pubDate>Thu, 18 Oct 2007 02:09:46 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Apache]]></category>
		<category><![CDATA[Linux]]></category>
		<category><![CDATA[Quick Tip]]></category>
		<category><![CDATA[Security]]></category>
		<category><![CDATA[Firewall]]></category>
		<category><![CDATA[PHP]]></category>

		<guid isPermaLink="false">http://www.mnxsolutions.com/blog/apache/securing-your-server.html</guid>
		<description><![CDATA[We deal with security related issues nearly every day.  Many of these issues could be prevented with a few minor changes to php.ini along with the installation of mod_security. It is simply amazing how many machines are hacked, and then used for the sole purpose of sending spam, denial of service (DoS) attacks or [...]]]></description>
		<wfw:commentRss>http://www.mnxsolutions.com/apache/securing-your-server.html/feed</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>HTTP to HTTPS via mod_rewrite</title>
		<link>http://www.mnxsolutions.com/apache/http-to-https-via-mod_rewrite.html</link>
		<comments>http://www.mnxsolutions.com/apache/http-to-https-via-mod_rewrite.html#comments</comments>
		<pubDate>Fri, 12 Oct 2007 23:42:43 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Apache]]></category>
		<category><![CDATA[Quick Tip]]></category>
		<category><![CDATA[mod_rewrite]]></category>

		<guid isPermaLink="false">http://www.mnxsolutions.com/blog/uncategorized/http-to-https-via-mod_rewrite.html</guid>
		<description><![CDATA[To redirect a website from http -&#62; https I utilized mod_rewrite. And created a .htaccess file with the following contents.
$ cat .htaccess
Options FollowSymLinks
RewriteEngine On
RewriteCond %{SERVER_PORT} !^443$
RewriteRule ^(.*)         https://your_server.com/$1
This can be useful if you need to ensure all access to your site, is done via HTTPS.
]]></description>
		<wfw:commentRss>http://www.mnxsolutions.com/apache/http-to-https-via-mod_rewrite.html/feed</wfw:commentRss>
		<slash:comments>4</slash:comments>
		</item>
		<item>
		<title>Removing a passphrase from an SSL Key</title>
		<link>http://www.mnxsolutions.com/apache/removing-a-passphrase-from-an-ssl-key.html</link>
		<comments>http://www.mnxsolutions.com/apache/removing-a-passphrase-from-an-ssl-key.html#comments</comments>
		<pubDate>Fri, 12 Oct 2007 23:29:47 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Apache]]></category>
		<category><![CDATA[Quick Tip]]></category>
		<category><![CDATA[ssl]]></category>

		<guid isPermaLink="false">http://www.mnxsolutions.com/blog/uncategorized/removing-a-passphrase-from-an-ssl-key.html</guid>
		<description><![CDATA[The typical process for creating an SSL certificate is as follows:
 # openssl genrsa -des3 -out www.key 2048
Note: When creating the key, you can avoid entering the initial passphrase altogether using:
# openssl genrsa -out www.key 2048
At this point it is asking for a PASS PHRASE (which I will describe how to remove):
 Enter pass phrase [...]]]></description>
		<wfw:commentRss>http://www.mnxsolutions.com/apache/removing-a-passphrase-from-an-ssl-key.html/feed</wfw:commentRss>
		<slash:comments>4</slash:comments>
		</item>
	</channel>
</rss>
