<?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: Screencast on OpenBD Setup and connecting to Apache</title>
	<atom:link href="http://b2.sixsigns.com/2008/07/18/screencast-on-openbd-setup-and-connecting-to-apache/feed/" rel="self" type="application/rss+xml" />
	<link>http://b2.sixsigns.com/2008/07/18/screencast-on-openbd-setup-and-connecting-to-apache/</link>
	<description>Enrich people's lives and web experience</description>
	<pubDate>Fri, 09 Jan 2009 13:14:24 +0000</pubDate>
	<generator>http://wordpress.org/?v=2.7</generator>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
		<item>
		<title>By: Al Holden</title>
		<link>http://b2.sixsigns.com/2008/07/18/screencast-on-openbd-setup-and-connecting-to-apache/comment-page-1/#comment-385</link>
		<dc:creator>Al Holden</dc:creator>
		<pubDate>Sun, 03 Aug 2008 08:42:29 +0000</pubDate>
		<guid isPermaLink="false">http://blog.sixsigns.com/?p=406#comment-385</guid>
		<description>Headaches later...
Ubuntu 8.04 (Debian) Apache2 version has a sneaky "Deny from all" command inside proxy.conf - a file under /etc/apache2/mods-enabled/ - that definitely needs to be commented out. Yes that's right; a "mods" directory with a bunch of "conf" files in it...

And for my needs; /etc/hosts file revision did not work. I just needed to use / http://[serverIP]:8080/openbluedragon/[path] in the ProxyPass attributes.

I hope this helps someone else.</description>
		<content:encoded><![CDATA[<p><!-- google_ad_section_start -->Headaches later&#8230;<br />
Ubuntu 8.04 (Debian) Apache2 version has a sneaky &#8220;Deny from all&#8221; command inside proxy.conf - a file under /etc/apache2/mods-enabled/ - that definitely needs to be commented out. Yes that&#8217;s right; a &#8220;mods&#8221; directory with a bunch of &#8220;conf&#8221; files in it&#8230;</p>
<p>And for my needs; /etc/hosts file revision did not work. I just needed to use / <a href="http://serverIP:8080/openbluedragon/path" onclick="javascript:pageTracker._trackPageview('a/');" rel="nofollow">http://serverIP:8080/openbluedragon/path</a> in the ProxyPass attributes.</p>
<p>I hope this helps someone else.<!-- google_ad_section_end --></p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Al Holden</title>
		<link>http://b2.sixsigns.com/2008/07/18/screencast-on-openbd-setup-and-connecting-to-apache/comment-page-1/#comment-384</link>
		<dc:creator>Al Holden</dc:creator>
		<pubDate>Tue, 29 Jul 2008 04:52:15 +0000</pubDate>
		<guid isPermaLink="false">http://blog.sixsigns.com/?p=406#comment-384</guid>
		<description>OK, so I used Webmin to create a Virtual Server, and then just located the .conf file that Webmin customized and added the new VirtualHost and ProxyPass tags there.
Restarted Tomcat and Apache, now I get a 403:
"You don’t have permission to access / on this server"
I think it's referring to the root "/" in the Proxy tags, because if I change it there (to "/foo"), then the error message echoes the change.</description>
		<content:encoded><![CDATA[<p><!-- google_ad_section_start -->OK, so I used Webmin to create a Virtual Server, and then just located the .conf file that Webmin customized and added the new VirtualHost and ProxyPass tags there.<br />
Restarted Tomcat and Apache, now I get a 403:<br />
&#8220;You don’t have permission to access / on this server&#8221;<br />
I think it&#8217;s referring to the root &#8220;/&#8221; in the Proxy tags, because if I change it there (to &#8220;/foo&#8221;), then the error message echoes the change.<!-- google_ad_section_end --></p>
]]></content:encoded>
	</item>
	<item>
		<title>By: SixSigns</title>
		<link>http://b2.sixsigns.com/2008/07/18/screencast-on-openbd-setup-and-connecting-to-apache/comment-page-1/#comment-382</link>
		<dc:creator>SixSigns</dc:creator>
		<pubDate>Mon, 28 Jul 2008 07:33:02 +0000</pubDate>
		<guid isPermaLink="false">http://blog.sixsigns.com/?p=406#comment-382</guid>
		<description>Configuring Apache needs a little bit know how about the file system and where Apache stored them.

On CentOS/RedHat you will find them under "/etc/httpd/" on MacOS X "/etc/apache2/". I am guessing that Ubuntu stores them under "/etc" as well. Look for a directory called "http" or "apache".

Apache 2.x started to uses includes, thus you have the additional vhosts include. But each vendor does it a bit different, thus your virtual hosts might still be in the http.conf file.

Your best bet is to use the "find" command. Enter in a shell:

find / -iname apache

This should take some time as it searches the whole server for every file containing "apache".

This should get you in the right direction. There is also the OpenBD Mailinglist where you can ask all those questions as well.</description>
		<content:encoded><![CDATA[<p><!-- google_ad_section_start -->Configuring Apache needs a little bit know how about the file system and where Apache stored them.</p>
<p>On CentOS/RedHat you will find them under &#8220;/etc/httpd/&#8221; on MacOS X &#8220;/etc/apache2/&#8221;. I am guessing that Ubuntu stores them under &#8220;/etc&#8221; as well. Look for a directory called &#8220;http&#8221; or &#8220;apache&#8221;.</p>
<p>Apache 2.x started to uses includes, thus you have the additional vhosts include. But each vendor does it a bit different, thus your virtual hosts might still be in the http.conf file.</p>
<p>Your best bet is to use the &#8220;find&#8221; command. Enter in a shell:</p>
<p>find / -iname apache</p>
<p>This should take some time as it searches the whole server for every file containing &#8220;apache&#8221;.</p>
<p>This should get you in the right direction. There is also the OpenBD Mailinglist where you can ask all those questions as well.<!-- google_ad_section_end --></p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Al Holden</title>
		<link>http://b2.sixsigns.com/2008/07/18/screencast-on-openbd-setup-and-connecting-to-apache/comment-page-1/#comment-381</link>
		<dc:creator>Al Holden</dc:creator>
		<pubDate>Mon, 28 Jul 2008 02:51:30 +0000</pubDate>
		<guid isPermaLink="false">http://blog.sixsigns.com/?p=406#comment-381</guid>
		<description>What if this does not work for me?
Which specific mods need to be installed for Apache to use these proxy attributes?
What if my Ubuntu 8.04.1 Apache2 does not have any /etc/apache2/extra/httpd-vhosts.conf file (or even an /extra/ directory for that matter)?
Which file do I edit then? I've tried both 000-default and openbd.local.conf under /sites-enabled/.
Could I use my Webmin 1.42 interface to make all these vhost settings? Webmin shows multiple Virtual Servers with the same settings whenever I directly modify the above conf files as you suggest.
I have BlueDragon running, I can see a CFM page under the http://(mydomain.com):8080/openbluedragon/ directory. But I can't get the URL "http://(mydomain.com)" to show this page. I get the Apache 403 message "You don't have permission to access / on this server". 
Perhaps the method used to set up Apache proxies has changed recently, or for Ubuntu 64 bit? Perhaps the Apache2 2.2.8-lubuntu0.3 package does not have all required mods running by default?</description>
		<content:encoded><![CDATA[<p><!-- google_ad_section_start -->What if this does not work for me?<br />
Which specific mods need to be installed for Apache to use these proxy attributes?<br />
What if my Ubuntu 8.04.1 Apache2 does not have any /etc/apache2/extra/httpd-vhosts.conf file (or even an /extra/ directory for that matter)?<br />
Which file do I edit then? I&#8217;ve tried both 000-default and openbd.local.conf under /sites-enabled/.<br />
Could I use my Webmin 1.42 interface to make all these vhost settings? Webmin shows multiple Virtual Servers with the same settings whenever I directly modify the above conf files as you suggest.<br />
I have BlueDragon running, I can see a CFM page under the <a href="http://" onclick="javascript:pageTracker._trackPageview('a/');" rel="nofollow">http://</a>(mydomain.com):8080/openbluedragon/ directory. But I can&#8217;t get the URL &#8220;http://(mydomain.com)&#8221; to show this page. I get the Apache 403 message &#8220;You don&#8217;t have permission to access / on this server&#8221;.<br />
Perhaps the method used to set up Apache proxies has changed recently, or for Ubuntu 64 bit? Perhaps the Apache2 2.2.8-lubuntu0.3 package does not have all required mods running by default?<!-- google_ad_section_end --></p>
]]></content:encoded>
	</item>
</channel>
</rss>
