<?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>Marketgrid Consulting Blog &#187; Production</title>
	<atom:link href="http://www.marketgrid.com/blog/tag/production/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.marketgrid.com/blog</link>
	<description>MySQL, website development and performance news</description>
	<lastBuildDate>Wed, 01 Sep 2010 11:00:45 +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>Masking your Apache information with ServerTokens</title>
		<link>http://www.marketgrid.com/blog/2010/01/masking-your-apache-information-with-servertokens/</link>
		<comments>http://www.marketgrid.com/blog/2010/01/masking-your-apache-information-with-servertokens/#comments</comments>
		<pubDate>Sun, 10 Jan 2010 13:20:53 +0000</pubDate>
		<dc:creator>Phil Smith</dc:creator>
				<category><![CDATA[Apache]]></category>
		<category><![CDATA[Confirg]]></category>
		<category><![CDATA[Production]]></category>

		<guid isPermaLink="false">http://www.marketgrid.com/blog/?p=42</guid>
		<description><![CDATA[If you want to give away less information about your current version of Apache, then you can use the ServerTokens directive in the config file (httpd.conf). The recommended one for Production servers is &#8216;Prod&#8217;, which will only tell people you are running Apache. Others as you can see give more information about versions and O/S [...]]]></description>
			<content:encoded><![CDATA[<p>If you want to give away less information about your current version of Apache, then you can use the ServerTokens directive in the config file (httpd.conf). The recommended one for Production servers is &#8216;Prod&#8217;, which will only tell people you are running Apache. Others as you can see give more information about versions and O/S which may make it easier for attackers.</p>
<p>Your httpd.conf file should look something like this:</p>
<pre>
#
# Don't give away too much information about all the subcomponents
# we are running.  Comment out this line if you don't mind remote sites
# finding out what major optional modules you are running
ServerTokens OS
</pre>
<p>Change it to look like this</p>
<pre>#
# Don't give away too much information about all the subcomponents
# we are running.  Comment out this line if you don't mind remote sites
# finding out what major optional modules you are running
ServerTokens Prod
</pre>
<h2>ServerTokens</h2>
<p>This directive controls whether Server response header field which is sent back to clients includes a description of the generic OS-type of the server as well as information about compiled-in modules.</p>
<pre>ServerTokens Prod[uctOnly]
Server sends (e.g.):
Server:       Apache

ServerTokens Min[imal]
Server sends (e.g.):
Server:       Apache/1.3.0

ServerTokens OS
Server sends (e.g.):
Server: Apache/1.3.0       (Unix)

ServerTokens Full (or not specified)
Server sends (e.g.):
Server: Apache/1.3.0       (Unix) PHP/3.0 MyMod/1.2</pre>
<h2>Notes</h2>
<p>This setting applies to the entire server, and cannot be enabled or disabled on a virtualhost-by-virtualhost basis.</p>
<p>ServerTokens is     only available in Apache 1.3 and later; the ProductOnly keyword is only available in versions     later than 1.3.12</p>
]]></content:encoded>
			<wfw:commentRss>http://www.marketgrid.com/blog/2010/01/masking-your-apache-information-with-servertokens/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
