Is it possible to use Zope with virtual hosts where each host has a different set of access controls? -- John
On Jan 31, 2004, at 11:53 AM, John Poltorak wrote:
Is it possible to use Zope with virtual hosts where each host has a different set of access controls?
Sure; I do it with a few different virtual hosts on my site. Using Virtual Host Monster, just create a different mod_rewrite rule in Apache for each host that maps to the appropriate folder in Zope that is the base for each virtual host. E.g., with two folders off the Zope root named 'foo' and 'bar': <VirtualHost *> ServerName foo.leafe.com RewriteRule ^/(.*) http://localhost:8080/VirtualHostBase/http/leafe.com:80/bar/ VirtualHostRoot/$1 [NC,L,P] </VirtualHost> <VirtualHost *> ServerName bar.leafe.com RewriteRule ^/(.*) http://localhost:8080/VirtualHostBase/http/leafe.com:80/bar/ VirtualHostRoot/$1 [NC,L,P] </VirtualHost> ___/ / __/ / ____/ Ed Leafe Linux Love: unzip;strip;touch;finger;mount;fsck;more;yes;umount;sleep
On Sat, Jan 31, 2004 at 12:10:32PM -0500, Ed Leafe wrote:
On Jan 31, 2004, at 11:53 AM, John Poltorak wrote:
Is it possible to use Zope with virtual hosts where each host has a different set of access controls?
Sure; I do it with a few different virtual hosts on my site. Using Virtual Host Monster
Sounds interesting, but what is it?
___/ / __/ / ____/ Ed Leafe
Linux Love: unzip;strip;touch;finger;mount;fsck;more;yes;umount;sleep
-- John
--On Sonntag, 1. Februar 2004 12:11 Uhr +0000 John Poltorak <jp@warpix.org> wrote:
On Sat, Jan 31, 2004 at 12:10:32PM -0500, Ed Leafe wrote:
On Jan 31, 2004, at 11:53 AM, John Poltorak wrote:
Is it possible to use Zope with virtual hosts where each host has a different set of access controls?
Sure; I do it with a few different virtual hosts on my site. Using Virtual Host Monster
see Zope Book -> Virtual Hosting. -aj
On Feb 1, 2004, at 7:11 AM, John Poltorak wrote:
Is it possible to use Zope with virtual hosts where each host has a different set of access controls?
Sure; I do it with a few different virtual hosts on my site. Using Virtual Host Monster
Sounds interesting, but what is it?
http://zope.org/Documentation/Books/ZopeBook/2_6Edition/ VirtualHosting.stx ___/ / __/ / ____/ Ed Leafe Linux Love: unzip;strip;touch;finger;mount;fsck;more;yes;umount;sleep
participants (3)
-
Andreas Jung -
Ed Leafe -
John Poltorak