Re: [Zope] VHost logs.

2000-12-03 Thread seb bacon
> > mod_rewrite is your friend. You just make a Rule that redirects > > anyone accessing your site on port 80 to port 443, something like > > this: > > > > > > ServerName www.foobar.com > > RewriteEngine on > > RewriteRule ^/(.*)https://www.foobar.com/ > > > > I don't want to fo

Re: [Zope] VHost logs.

2000-11-30 Thread Rob Miller
seb bacon wrote: >> Rob Miller wrote: >> >> In a manner of speaking, yes. That is, Apache needs to have correctly >> configured VirtualHost directives to handle the requests from the >> outside world appropriately, and Zope needs to have the SiteAccess >> product installed with correctly co

RE: [Zope] VHost logs.

2000-11-30 Thread Seb Bacon
> > ServerName www.foobar.com > RewriteEngine on > RewriteRule ^/(.*) https://www.foobar.com/ > of course i actually meant: ServerName www.foobar.com RewriteEngine on RewriteRule ^/(.*) https://www.foobar.com/$1 ___ Zope

Re: [Zope] VHost logs.

2000-11-30 Thread seb bacon
> In a manner of speaking, yes. That is, Apache needs to have correctly > configured VirtualHost directives to handle the requests from the > outside world appropriately, and Zope needs to have the SiteAccess > product installed with correctly configured SiteRoots and access rules. > It tak

Re: [Zope] VHost logs.

2000-11-30 Thread Rob Miller
Jason C. Leach wrote: > hi, > > With Apache in front of zope, do you disable Medusa? No. Apache merely acts as a proxy server. Apache gets a request, passes the request on to Zope, Medusa/Zserver serves up the results back to Apache, which then hands them out to the original requester. > A

Re: [Zope] VHost logs.

2000-11-29 Thread Jason C. Leach
hi, With Apache in front of zope, do you disable Medusa? And do you need to set both Apache and Zope to have the vhosts (do I need to set up a vhost twice?). Thanks, j. .. . Jason C. Leach ... University College of the Cariboo. .. On Wed, 29 Nov 2000, Rob Miller wrote:

Re: [Zope] VHost logs.

2000-11-29 Thread Oliver Bleutgen
> Jason C. Leach wrote: >> hi, >> >> Has anyone implemented there own logging for Virtual Sites? >> >> I was thinking in the site rules an External Method could be called, >> passed the Request obj, and from that generate logs for virtual sites. >> >> If anyone has done that, or knows of a better

Re: [Zope] VHost logs.

2000-11-29 Thread Rob Miller
Jason C. Leach wrote: > hi, > > Has anyone implemented there own logging for Virtual Sites? > > I was thinking in the site rules an External Method could be called, > passed the Request obj, and from that generate logs for virtual sites. > > If anyone has done that, or knows of a better way I'

[Zope] VHost logs.

2000-11-29 Thread Jason C. Leach
hi, Has anyone implemented there own logging for Virtual Sites? I was thinking in the site rules an External Method could be called, passed the Request obj, and from that generate logs for virtual sites. If anyone has done that, or knows of a better way I'd be interested in hearing it. j.