<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	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/"
		>
<channel>
	<title>Comments on: Adding virtual hosts to your Apache installation on OS X</title>
	<atom:link href="http://switch.richard5.net/isp-in-a-box-v2/installing-apache-on-mac-os-x/adding-virtual-hosts-to-your-apache-installation-on-os-x/feed/" rel="self" type="application/rss+xml" />
	<link>http://switch.richard5.net</link>
	<description>How to build your Mac into a internet server using open source software</description>
	<lastBuildDate>Tue, 17 Jun 2008 18:25:42 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.2.1</generator>
	<item>
		<title>By: another steve</title>
		<link>http://switch.richard5.net/isp-in-a-box-v2/installing-apache-on-mac-os-x/adding-virtual-hosts-to-your-apache-installation-on-os-x/comment-page-1/#comment-61427</link>
		<dc:creator>another steve</dc:creator>
		<pubDate>Tue, 20 May 2008 11:19:41 +0000</pubDate>
		<guid isPermaLink="false">http://switch.richard5.net/adding-virtual-hosts-to-your-apache-installation-on-os-x/#comment-61427</guid>
		<description>Hi Murray, no doubt you&#039;ve sorted the problem now but just in case anyone else has a similar problem it&#039;s easily solved by editing the httpd.conf file and changing the following entry:


    Options FollowSymLinks
    AllowOverride None
    Order deny,allow
    Deny from all


To:


    Options FollowSymLinks
    AllowOverride None
    Order deny,allow
    Allow from all             ## Changed this from &quot;Deny from all&quot; ##
</description>
		<content:encoded><![CDATA[<p>Hi Murray, no doubt you&#8217;ve sorted the problem now but just in case anyone else has a similar problem it&#8217;s easily solved by editing the httpd.conf file and changing the following entry:</p>
<p>    Options FollowSymLinks<br />
    AllowOverride None<br />
    Order deny,allow<br />
    Deny from all</p>
<p>To:</p>
<p>    Options FollowSymLinks<br />
    AllowOverride None<br />
    Order deny,allow<br />
    Allow from all             ## Changed this from &#8220;Deny from all&#8221; ##</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Murray</title>
		<link>http://switch.richard5.net/isp-in-a-box-v2/installing-apache-on-mac-os-x/adding-virtual-hosts-to-your-apache-installation-on-os-x/comment-page-1/#comment-54682</link>
		<dc:creator>Murray</dc:creator>
		<pubDate>Fri, 29 Feb 2008 05:47:26 +0000</pubDate>
		<guid isPermaLink="false">http://switch.richard5.net/adding-virtual-hosts-to-your-apache-installation-on-os-x/#comment-54682</guid>
		<description>Hello, 

I&#039;ve had multiple sites working off my mini (10.4.11) for years. I&#039;ve just bought a new iMac (10.5.2) and I&#039;m trying to get it configured so I can move the site off the mini. 

I seem to have everything configured as on the mini but I keep getting the 403 Forbidden error. 

The only differences I can see is that some paths have changed: 

mini: /private/etc/httpd/httpd.conf
iMac: /private/etc/apache2/httpd.conf

The httpd.conf on the iMac also uses an include file for the virtual hosts config but I have that commented out. 

I noticed this (http://docs.info.apple.com/article.html?artnum=306884) on Apple&#039;s support site but it seems to be for a different problem. At any rate the files described in the article are all there anyway. Is there some other user I need to add? 

Any suggestions? Thanks. 

Murray  =:-)</description>
		<content:encoded><![CDATA[<p>Hello, </p>
<p>I&#8217;ve had multiple sites working off my mini (10.4.11) for years. I&#8217;ve just bought a new iMac (10.5.2) and I&#8217;m trying to get it configured so I can move the site off the mini. </p>
<p>I seem to have everything configured as on the mini but I keep getting the 403 Forbidden error. </p>
<p>The only differences I can see is that some paths have changed: </p>
<p>mini: /private/etc/httpd/httpd.conf<br />
iMac: /private/etc/apache2/httpd.conf</p>
<p>The httpd.conf on the iMac also uses an include file for the virtual hosts config but I have that commented out. </p>
<p>I noticed this (<a href="http://docs.info.apple.com/article.html?artnum=306884" rel="nofollow">http://docs.info.apple.com/article.html?artnum=306884</a>) on Apple&#8217;s support site but it seems to be for a different problem. At any rate the files described in the article are all there anyway. Is there some other user I need to add? </p>
<p>Any suggestions? Thanks. </p>
<p>Murray  =:-)</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: snozle</title>
		<link>http://switch.richard5.net/isp-in-a-box-v2/installing-apache-on-mac-os-x/adding-virtual-hosts-to-your-apache-installation-on-os-x/comment-page-1/#comment-4853</link>
		<dc:creator>snozle</dc:creator>
		<pubDate>Sat, 28 Oct 2006 22:23:03 +0000</pubDate>
		<guid isPermaLink="false">http://switch.richard5.net/adding-virtual-hosts-to-your-apache-installation-on-os-x/#comment-4853</guid>
		<description>hello,  I&#039;ve followed these instructions, but I can&#039;t seem to get them right.  When I point my browser to the URL snozle.com it goes to my hosting provider&#039;s site, but when I direct it to www.snozle.com it goes to my site.  I have my DNS servers configured:
@ A ipaddress
* A ipaddress
www. A ipaddress

Also, my second entry, bondosco.com just doesn&#039;t work and directs me to snozle.com.  

Finally, I am no longer able to access my phpmyadmin folder by going to 
myserverip/phpmyadmin.  When I do that it simply gives me a 404.

The virtual host section of my httpd.conf file is below:
NameVirtualHost *:80


   DocumentRoot /Library/Apache2/htdocs/snozle
   ServerName snozle.com



   DocumentRoot /Library/Apache2/htdocs/mediawiki-1.5.1
   ServerName bondosco.com
</description>
		<content:encoded><![CDATA[<p>hello,  I&#8217;ve followed these instructions, but I can&#8217;t seem to get them right.  When I point my browser to the URL snozle.com it goes to my hosting provider&#8217;s site, but when I direct it to <a href="http://www.snozle.com" rel="nofollow">http://www.snozle.com</a> it goes to my site.  I have my DNS servers configured:<br />
@ A ipaddress<br />
* A ipaddress<br />
www. A ipaddress</p>
<p>Also, my second entry, bondosco.com just doesn&#8217;t work and directs me to snozle.com.  </p>
<p>Finally, I am no longer able to access my phpmyadmin folder by going to<br />
myserverip/phpmyadmin.  When I do that it simply gives me a 404.</p>
<p>The virtual host section of my httpd.conf file is below:<br />
NameVirtualHost *:80</p>
<p>   DocumentRoot /Library/Apache2/htdocs/snozle<br />
   ServerName snozle.com</p>
<p>   DocumentRoot /Library/Apache2/htdocs/mediawiki-1.5.1<br />
   ServerName bondosco.com</p>
]]></content:encoded>
	</item>
</channel>
</rss>

