I finally got my blog running on Apache 2.2.2 & Mongrel 0.3.13.3 (clustered). Whew! Two whole flippin'' days trying to get virtual hosts and proxies and permissions (& svn) to work together. Anyway, I''ve got the little server header thingy extension in Firefox. When I browse my blog, it shows the mongrel headers. Is there a quick fix for this? -- Cheers, Kevin
On Jul 9, 2006, at 4:51 PM, Kevin Williams wrote:> I finally got my blog running on Apache 2.2.2 & Mongrel 0.3.13.3 > (clustered). Whew! Two whole flippin'' days trying to get virtual hosts > and proxies and permissions (& svn) to work together. > > Anyway, I''ve got the little server header thingy extension in Firefox. > When I browse my blog, it shows > the mongrel headers. Is there a quick fix for this? > -- > Cheers, > > Kevin >You need the mod_headers enabled (http://httpd.apache.org/docs/2.2/ mod/mod_headers.html), and you can set|append|add|unset|echo any existing or non-existent (add) headers Header unset Server will strip the Server header. Header set Server "Whatever" will replace any value what "Whatever" Header add Served-By "Me" will add a new header. - Jason
Thank you! On 7/9/06, Jason A. Hoffman <jason at joyent.com> wrote:> On Jul 9, 2006, at 4:51 PM, Kevin Williams wrote: > > I finally got my blog running on Apache 2.2.2 & Mongrel 0.3.13.3 > > (clustered). Whew! Two whole flippin'' days trying to get virtual hosts > > and proxies and permissions (& svn) to work together. > > > > Anyway, I''ve got the little server header thingy extension in Firefox. > > When I browse my blog, it shows > > the mongrel headers. Is there a quick fix for this? > > -- > > Cheers, > > > > Kevin > > > > You need the mod_headers enabled (http://httpd.apache.org/docs/2.2/ > mod/mod_headers.html), and you can set|append|add|unset|echo any > existing or non-existent (add) headers > > Header unset Server > > will strip the Server header. > > Header set Server "Whatever" > > will replace any value what "Whatever" > > Header add Served-By "Me" > > will add a new header. > > - Jason > > > > > > > _______________________________________________ > Mongrel-users mailing list > Mongrel-users at rubyforge.org > http://rubyforge.org/mailman/listinfo/mongrel-users >-- Cheers, Kevin