[EMAIL PROTECTED] said:
> On Tue, Apr 03, 2001 at 08:20:59AM +0200, Pierre Baillet wrote:
> Hi !
> I've been playing quite a lot with you ComSwiki and it is just a great
> thing. A small feature I was about to implement was a small
> 'virtualhost
> like' behaviour so that I could use my swiki on one DNS entry and
> nothing else on the other DNS entries:

I solved this by putting ComSwiki on some fantasy port (8888 in my case but 
you can use anything you like), and putting Apache in front of it with 
mod_proxy remapping the port, eg:

<VirtualHost "swiki.theansweris42.com">
  ServerName swiki.theansweris42.com
  ProxyRequests on
  ProxyPass / http://127.0.0.1:8888/
  ProxyPassReverse / http://127.0.0.1:8888/
</VirtualHost>

I'm not sure this is exactly what you mean, but it solved my problem: 
exporting the Swiki on port 80 but without it costing me IP addresses on port 
80 (one thing in the Squeak sockets stuff I want to fix one day is that you 
cannot bind to a particular address).

-- 
Cees de Groot               http://www.cdegroot.com     <[EMAIL PROTECTED]>
GnuPG 1024D/E0989E8B 0016 F679 F38D 5946 4ECD  1986 F303 937F E098 9E8B


Reply via email to