<?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>Everything is Crap &#187; apache</title>
	<atom:link href="http://everythingiscrap.com/tag/apache/feed/" rel="self" type="application/rss+xml" />
	<link>http://everythingiscrap.com</link>
	<description>Notes on the crap we&#039;ve been subjected to</description>
	<lastBuildDate>Wed, 11 Jan 2012 21:10:15 +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 Redirect, the admin way</title>
		<link>http://everythingiscrap.com/apache-redirect-the-admin-way/</link>
		<comments>http://everythingiscrap.com/apache-redirect-the-admin-way/#comments</comments>
		<pubDate>Fri, 05 Feb 2010 16:14:32 +0000</pubDate>
		<dc:creator>paul</dc:creator>
				<category><![CDATA[apache]]></category>
		<category><![CDATA[ubuntu]]></category>
		<category><![CDATA[linux]]></category>

		<guid isPermaLink="false">http://everythingiscrap.com/?p=235</guid>
		<description><![CDATA[I needed to redirect the root of my Webserver. The first (and easiest) way I found was to add this to my default virtual host: Redirect / http://www.new-domain.com/ For me, that file was located in /etc/apache2/sites-available/default.]]></description>
			<content:encoded><![CDATA[<p>I needed to redirect the root of my Webserver. The first (and easiest) way I found was to add this to my default virtual host:</p>
<blockquote><p>Redirect / http://www.new-domain.com/</p></blockquote>
<p>For me, that file was located in /etc/apache2/sites-available/default.</p>
]]></content:encoded>
			<wfw:commentRss>http://everythingiscrap.com/apache-redirect-the-admin-way/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Fix &quot;Could not reliably determine the server’s fully qualified domain name&quot; apache error</title>
		<link>http://everythingiscrap.com/fix-could-not-reliably-determine-the-server%e2%80%99s-fully-qualified-domain-name-apache-error/</link>
		<comments>http://everythingiscrap.com/fix-could-not-reliably-determine-the-server%e2%80%99s-fully-qualified-domain-name-apache-error/#comments</comments>
		<pubDate>Mon, 01 Feb 2010 21:12:13 +0000</pubDate>
		<dc:creator>paul</dc:creator>
				<category><![CDATA[apache]]></category>
		<category><![CDATA[ubuntu]]></category>
		<category><![CDATA[linux]]></category>

		<guid isPermaLink="false">http://everythingiscrap.com/?p=228</guid>
		<description><![CDATA[To fix the error "Could not reliably determine the server’s fully qualified domain name&#8230;" that happens when you restart Apache on Ubuntu, add this to /etc/apache2/httpd.conf ServerName localhost restart Apache again (apache2ctl graceful) and the error message should be gone. Thanks to Mohamed Aslam]]></description>
			<content:encoded><![CDATA[<p>To fix the error "Could not reliably determine the server’s fully qualified domain name&#8230;" that happens when you restart Apache on Ubuntu, add this to /etc/apache2/httpd.conf</p>
<blockquote><p>ServerName localhost</p></blockquote>
<p>restart Apache again (apache2ctl graceful) and the error message should be gone.</p>
<p>Thanks to <a href="http://mohamedaslam.com/how-to-fix-apache-could-not-reliably-determine-the-servers-fully-qualified-domain-name-using-127011-for-servername-error-on-ubuntu/">Mohamed Aslam</a></p>
]]></content:encoded>
			<wfw:commentRss>http://everythingiscrap.com/fix-could-not-reliably-determine-the-server%e2%80%99s-fully-qualified-domain-name-apache-error/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>How to enable mod_rewrite in WordPress</title>
		<link>http://everythingiscrap.com/how-to-enable-mod_rewrite-in-wordpress/</link>
		<comments>http://everythingiscrap.com/how-to-enable-mod_rewrite-in-wordpress/#comments</comments>
		<pubDate>Thu, 21 Jan 2010 15:55:58 +0000</pubDate>
		<dc:creator>paul</dc:creator>
				<category><![CDATA[ubuntu]]></category>
		<category><![CDATA[wordpress]]></category>
		<category><![CDATA[apache]]></category>
		<category><![CDATA[linux]]></category>

		<guid isPermaLink="false">http://everythingiscrap.com/?p=200</guid>
		<description><![CDATA[&#8230;so you can have descriptive URLs like ours. Three easy steps: 1) First, from /etc/apache2/mods-enabled/ ln -s /etc/apache2/mods-available/rewrite.load 2) Then&#8230; /etc/init.d/apache2 restart 3) Last, add this stuff to your virtual host definition (in my case, /etc/apache2/sites-available/everythingiscrap) RewriteEngine On RewriteOptions Inherit I guess  you could say that the last step is to ENABLE descriptive permalinks in [...]]]></description>
			<content:encoded><![CDATA[<p>&#8230;so you can have descriptive URLs like ours. Three easy steps:</p>
<p><img class="alignnone size-full wp-image-201" title="wordpress-90x90" src="http://everythingiscrap.com/wp-content/uploads/2010/01/wordpress-90x90.png" alt="" width="90" height="90" /></p>
<p>1) First, from /etc/apache2/mods-enabled/</p>
<blockquote><p>ln -s /etc/apache2/mods-available/rewrite.load</p></blockquote>
<p>2) Then&#8230;</p>
<blockquote><p>/etc/init.d/apache2 restart</p></blockquote>
<p>3) Last, add this stuff to your virtual host definition (in my case, /etc/apache2/sites-available/everythingiscrap)</p>
<blockquote><p>RewriteEngine On<br />
RewriteOptions Inherit</p></blockquote>
<p>I guess  you could say that the last step is to ENABLE descriptive permalinks in the WordPress Dashboard &gt; Settings &gt; Permalinks. But I had already done that before I went poking around on the server. So, for me it was a three step process, but I guess you could argue that it's a four step process.</p>
]]></content:encoded>
			<wfw:commentRss>http://everythingiscrap.com/how-to-enable-mod_rewrite-in-wordpress/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>New Virtual Host in Apache on Ubuntu</title>
		<link>http://everythingiscrap.com/new-virtual-host-in-apache-on-ubuntu/</link>
		<comments>http://everythingiscrap.com/new-virtual-host-in-apache-on-ubuntu/#comments</comments>
		<pubDate>Tue, 19 Jan 2010 18:53:07 +0000</pubDate>
		<dc:creator>paul</dc:creator>
				<category><![CDATA[apache]]></category>
		<category><![CDATA[ubuntu]]></category>
		<category><![CDATA[linux]]></category>

		<guid isPermaLink="false">http://everythingiscrap.com:81/?p=173</guid>
		<description><![CDATA[I'm an IIS guy, so Apache seems arcane to me. And the creation of a new website (aka Virtual Host) was difficult at first, but seems straightforward enough to me now. Here's how it's done. Create a text file that will define your website in /etc/apache2/sites-available. In that text file goes a description of your [...]]]></description>
			<content:encoded><![CDATA[<p>I'm an IIS guy, so Apache seems arcane to me. And the creation of a new website (aka Virtual Host) was difficult at first, but seems straightforward enough to me now. Here's how it's done.</p>
<p>Create a text file that will define your website in /etc/apache2/sites-available. In that text file goes a description of your new Virtual Host. Here's a barebones example:</p>
<blockquote><p>&lt;VirtualHost *:80&gt;</p>
<p>DocumentRoot /www/mysite</p>
<p>ServerName my.site.com</p>
<p>&lt;/VirtualHost&gt;</p></blockquote>
<p>Once you've created that file, you need to place a link to it in/etc/apache2/sites-enabled using a command like this (to create the symbolic link)</p>
<blockquote><p>ln -s /etc/apache2/sites-available/mysite</p></blockquote>
<p>Then you need to restart Apache&#8230;</p>
<blockquote><p>apache2ctl restart</p></blockquote>
<p>And, if you've done it right, you should have a new virtual host ready to go.</p>
]]></content:encoded>
			<wfw:commentRss>http://everythingiscrap.com/new-virtual-host-in-apache-on-ubuntu/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Apache Doesn&#039;t Start After System Restart</title>
		<link>http://everythingiscrap.com/apache-doesnt-start-after-system-restart/</link>
		<comments>http://everythingiscrap.com/apache-doesnt-start-after-system-restart/#comments</comments>
		<pubDate>Tue, 25 Mar 2008 17:49:00 +0000</pubDate>
		<dc:creator>paul</dc:creator>
				<category><![CDATA[apache]]></category>
		<category><![CDATA[linux]]></category>
		<category><![CDATA[web]]></category>

		<guid isPermaLink="false">http://piotrouble.wordpress.com/2008/03/25/apache-doesnt-start-after-system-restart</guid>
		<description><![CDATA[Linux web server restart problem&#8230; cd /etc/apache/ httpd -t httpd.conf [which websites are &#34;missing&#34;, comment them out in httpd.conf] apachectl restart &#8230;Had a power outage today which means our linux web server went down. And, once again, the web server didn't start because it couldn't find all the web sites listed in it's config file. [...]]]></description>
			<content:encoded><![CDATA[<div>Linux web server restart problem&#8230;</div>
<div></div>
<div>cd /etc/apache/</div>
<div>httpd -t httpd.conf</div>
<div>[which websites are &quot;missing&quot;, comment them out in httpd.conf]</div>
<div>apachectl restart</div>
<div></div>
<div>&#8230;Had a power outage today which means our linux web server went down. And, once again, the web server didn't start because it couldn't find all the web sites listed in it's config file. To make a long story short, I went to /etc/apache/httpd.conf and ran&#8230; httpd -t httpd.conf &#8230;this told me that it couldn't find two of the websites listed in /etc/apache/httpd.conf. It also said that it &quot;Cannot remove module mod_log_config.c&quot; but I don't know what that's all about, and it doesn't matter.  I commented out the two websites (with #) and typed&#8230; apachectl restart &#8230;and that fixed it.</div>
]]></content:encoded>
			<wfw:commentRss>http://everythingiscrap.com/apache-doesnt-start-after-system-restart/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
	</channel>
</rss>

