<?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: HIP 3.04 behind a reverse proxy</title>
	<atom:link href="http://www.daveyp.com/blog/archives/76/feed" rel="self" type="application/rss+xml" />
	<link>http://www.daveyp.com/blog/archives/76</link>
	<description>Dave Pattern's blog</description>
	<lastBuildDate>Sat, 27 Feb 2010 03:42:14 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=abc</generator>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
		<item>
		<title>By: Hacking the Horizon OPAC (HIP) with Apache &#171; Bibliographic Wilderness</title>
		<link>http://www.daveyp.com/blog/archives/76/comment-page-1#comment-155</link>
		<dc:creator>Hacking the Horizon OPAC (HIP) with Apache &#171; Bibliographic Wilderness</dc:creator>
		<pubDate>Fri, 02 Jan 2009 17:33:23 +0000</pubDate>
		<guid isPermaLink="false">http://www.daveyp.com/blog/index.php/archives/76/#comment-155</guid>
		<description>[...] Dave Pattern provides instructions for using Apache mod_proxy to provide an Apache reverse proxy front-end to HIP. [...]</description>
		<content:encoded><![CDATA[<p>[...] Dave Pattern provides instructions for using Apache mod_proxy to provide an Apache reverse proxy front-end to HIP. [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Dave Pattern</title>
		<link>http://www.daveyp.com/blog/archives/76/comment-page-1#comment-154</link>
		<dc:creator>Dave Pattern</dc:creator>
		<pubDate>Sat, 20 Dec 2008 09:18:43 +0000</pubDate>
		<guid isPermaLink="false">http://www.daveyp.com/blog/index.php/archives/76/#comment-154</guid>
		<description>Hiya Jonathan

When you &lt;a href=&quot;http://perl.apache.org/docs/2.0/user/install/install.html&quot; rel=&quot;nofollow&quot;&gt;install mod_perl 2.0&lt;/a&gt;, that should install all the Apache2 modules.

What errors are you getting?</description>
		<content:encoded><![CDATA[<p>Hiya Jonathan</p>
<p>When you <a href="http://perl.apache.org/docs/2.0/user/install/install.html" rel="nofollow">install mod_perl 2.0</a>, that should install all the Apache2 modules.</p>
<p>What errors are you getting?</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Jonathan Rochkind</title>
		<link>http://www.daveyp.com/blog/archives/76/comment-page-1#comment-153</link>
		<dc:creator>Jonathan Rochkind</dc:creator>
		<pubDate>Fri, 19 Dec 2008 20:28:59 +0000</pubDate>
		<guid isPermaLink="false">http://www.daveyp.com/blog/index.php/archives/76/#comment-153</guid>
		<description>Having trouble getting a PerlOutputFilterHandler to work, it&#039;s generating errors on the perl side. I think maybe I&#039;m missing something I need to install for perl, the Apache2 module maybe?  Anyone have any ideas?</description>
		<content:encoded><![CDATA[<p>Having trouble getting a PerlOutputFilterHandler to work, it&#039;s generating errors on the perl side. I think maybe I&#039;m missing something I need to install for perl, the Apache2 module maybe?  Anyone have any ideas?</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Jonathan Rochkind</title>
		<link>http://www.daveyp.com/blog/archives/76/comment-page-1#comment-152</link>
		<dc:creator>Jonathan Rochkind</dc:creator>
		<pubDate>Wed, 06 Aug 2008 15:29:07 +0000</pubDate>
		<guid isPermaLink="false">http://www.daveyp.com/blog/index.php/archives/76/#comment-152</guid>
		<description>Hey Dave, I am trying to set up mod_proxy to HIP too, and started from your directions... but I think I found an even much much simpler way to do it.

I _think_ that if you just put:

ProxyPreserveHost On

in your apache conf, you no longer need that Perl filter at all. Everything Just Works. It appears to. I almost didn&#039;t believe it could be this easy, but I&#039;m using it, it seems to be working...

So if anyone wants to give that a try, avoid the perl filter and just use ProxyPreserveHost On, it&#039;s worth a try--and if anyone does and finds it is succesful let me know!</description>
		<content:encoded><![CDATA[<p>Hey Dave, I am trying to set up mod_proxy to HIP too, and started from your directions&#8230; but I think I found an even much much simpler way to do it.</p>
<p>I _think_ that if you just put:</p>
<p>ProxyPreserveHost On</p>
<p>in your apache conf, you no longer need that Perl filter at all. Everything Just Works. It appears to. I almost didn&#039;t believe it could be this easy, but I&#039;m using it, it seems to be working&#8230;</p>
<p>So if anyone wants to give that a try, avoid the perl filter and just use ProxyPreserveHost On, it&#039;s worth a try&#8211;and if anyone does and finds it is succesful let me know!</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Ben Ostrowsky</title>
		<link>http://www.daveyp.com/blog/archives/76/comment-page-1#comment-151</link>
		<dc:creator>Ben Ostrowsky</dc:creator>
		<pubDate>Tue, 01 May 2007 22:55:52 +0000</pubDate>
		<guid isPermaLink="false">http://www.daveyp.com/blog/index.php/archives/76/#comment-151</guid>
		<description>More generally:

sub check
{
    my $str = shift;

    $str =~ s&#124;%3A81%2F&#124;%2F&#124;g;
    $str =~ s&#124;:81/&#124;/&#124;g;

    return($str);
}</description>
		<content:encoded><![CDATA[<p>More generally:</p>
<p>sub check<br />
{<br />
    my $str = shift;</p>
<p>    $str =~ s|%3A81%2F|%2F|g;<br />
    $str =~ s|:81/|/|g;</p>
<p>    return($str);<br />
}</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Dave Pattern</title>
		<link>http://www.daveyp.com/blog/archives/76/comment-page-1#comment-150</link>
		<dc:creator>Dave Pattern</dc:creator>
		<pubDate>Wed, 30 Aug 2006 20:43:35 +0000</pubDate>
		<guid isPermaLink="false">http://www.daveyp.com/blog/index.php/archives/76/#comment-150</guid>
		<description>Here&#039;s an updated version of the ModProxyHIP script which I&#039;ve found to be more reliable:

&lt;a href=&quot;http://www.daveyp.com/blog/stuff/ModProxyHIP.txt&quot; rel=&quot;nofollow&quot;&gt;ModProxyHIP&lt;/a&gt;</description>
		<content:encoded><![CDATA[<p>Here&#039;s an updated version of the ModProxyHIP script which I&#039;ve found to be more reliable:</p>
<p><a href="http://www.daveyp.com/blog/stuff/ModProxyHIP.txt" rel="nofollow">ModProxyHIP</a></p>
]]></content:encoded>
	</item>
</channel>
</rss>
