<?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>LAMP Tips! &#187; Apache</title>
	<atom:link href="http://lamptips.com/category/apache/feed/" rel="self" type="application/rss+xml" />
	<link>http://lamptips.com</link>
	<description>Tips for Linux, Apache (and Nginx!), MySQL and PHP!</description>
	<lastBuildDate>Sat, 03 Mar 2012 07:53:25 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.1</generator>
		<item>
		<title>Apache/Security &#8211; Hide Apache Version Number</title>
		<link>http://lamptips.com/2012/01/apachesecurity-hide-apache-version-number/</link>
		<comments>http://lamptips.com/2012/01/apachesecurity-hide-apache-version-number/#comments</comments>
		<pubDate>Mon, 30 Jan 2012 04:38:16 +0000</pubDate>
		<dc:creator>LampTips</dc:creator>
				<category><![CDATA[Apache]]></category>
		<category><![CDATA[Security]]></category>
		<category><![CDATA[apache]]></category>
		<category><![CDATA[pci]]></category>
		<category><![CDATA[security]]></category>

		<guid isPermaLink="false">http://lamptips.com/?p=16</guid>
		<description><![CDATA[<a href="http://lamptips.com/2012/01/apachesecurity-hide-apache-version-number/" title="Apache/Security - Hide Apache Version Number"></a>Sometimes, you may like a bit of security-through-obscurity. Some PCI providers even require this.  You can disable the display of the Apache version by adding the following to your httpd.conf (Generally in /etc/httpd/conf): ServerSignature Off ServerTokens Prod]]></description>
			<content:encoded><![CDATA[<a href="http://lamptips.com/2012/01/apachesecurity-hide-apache-version-number/" title="Apache/Security - Hide Apache Version Number"></a><p>Sometimes, you may like a bit of security-through-obscurity. Some PCI providers even require this.<br />
<span id="more-16"></span> You can disable the display of the Apache version by adding the following to your httpd.conf (Generally in /etc/httpd/conf):</p>
<pre>ServerSignature Off
ServerTokens Prod</pre>
]]></content:encoded>
			<wfw:commentRss>http://lamptips.com/2012/01/apachesecurity-hide-apache-version-number/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Apache/PCI &#8211; Disable Weak Cipher and older TLS Support</title>
		<link>http://lamptips.com/2012/01/apachepci-disable-weak-cipher-and-older-tls-support/</link>
		<comments>http://lamptips.com/2012/01/apachepci-disable-weak-cipher-and-older-tls-support/#comments</comments>
		<pubDate>Sun, 29 Jan 2012 11:13:25 +0000</pubDate>
		<dc:creator>LampTips</dc:creator>
				<category><![CDATA[Apache]]></category>
		<category><![CDATA[apache]]></category>
		<category><![CDATA[pci]]></category>
		<category><![CDATA[security]]></category>

		<guid isPermaLink="false">http://lamptips.com/?p=10</guid>
		<description><![CDATA[<a href="http://lamptips.com/2012/01/apachepci-disable-weak-cipher-and-older-tls-support/" title="Apache/PCI - Disable Weak Cipher and older TLS Support"></a>PCI compliance tests require you to disable weak ciphers and older TLS support.  You can do that by adding the following to your httpd.conf (Generally under /etc/httpd/conf/): SSLProtocol all -SSLv2 SSLCipherSuite ALL:!ADH:!EXPORT56:+HIGH:+MEDIUM:-SSLv2:-RC4:+EXP]]></description>
			<content:encoded><![CDATA[<a href="http://lamptips.com/2012/01/apachepci-disable-weak-cipher-and-older-tls-support/" title="Apache/PCI - Disable Weak Cipher and older TLS Support"></a><p>PCI compliance tests require you to disable weak ciphers and older TLS support.<br />
<span id="more-10"></span> You can do that by adding the following to your httpd.conf (Generally under /etc/httpd/conf/):</p>
<pre>SSLProtocol all -SSLv2
SSLCipherSuite ALL:!ADH:!EXPORT56:+HIGH:+MEDIUM:-SSLv2:-RC4:+EXP</pre>
]]></content:encoded>
			<wfw:commentRss>http://lamptips.com/2012/01/apachepci-disable-weak-cipher-and-older-tls-support/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Apache/PCI &#8211; Disable TRACE Method</title>
		<link>http://lamptips.com/2012/01/apachepci-disable-trace-method/</link>
		<comments>http://lamptips.com/2012/01/apachepci-disable-trace-method/#comments</comments>
		<pubDate>Sun, 29 Jan 2012 11:08:31 +0000</pubDate>
		<dc:creator>LampTips</dc:creator>
				<category><![CDATA[Apache]]></category>
		<category><![CDATA[apache]]></category>
		<category><![CDATA[pci]]></category>
		<category><![CDATA[security]]></category>

		<guid isPermaLink="false">http://lamptips.com/?p=7</guid>
		<description><![CDATA[<a href="http://lamptips.com/2012/01/apachepci-disable-trace-method/" title="Apache/PCI - Disable TRACE Method"></a>Some PCI tests require that you disable the Apache TRACE method as this can reveal sensitive information about the server.  Doing so is very simple! Add the following to your httpd.conf file (Generally in /etc/httpd/conf/): TraceEnable off]]></description>
			<content:encoded><![CDATA[<a href="http://lamptips.com/2012/01/apachepci-disable-trace-method/" title="Apache/PCI - Disable TRACE Method"></a><p>Some PCI tests require that you disable the Apache TRACE method as this can reveal sensitive information about the server.<br />
<span id="more-7"></span> Doing so is very simple! Add the following to your httpd.conf file (Generally in /etc/httpd/conf/):</p>
<pre>TraceEnable off</pre>
]]></content:encoded>
			<wfw:commentRss>http://lamptips.com/2012/01/apachepci-disable-trace-method/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

