Erlang wiki lives again

Petru Paler ppetru@REDACTED
Fri Dec 1 21:00:20 CET 2000


On Fri, Dec 01, 2000 at 06:56:13PM +0100, Joe Armstrong wrote:
> Because www.bluetail.com port 80 is used by our apache server.
> 
> Can you really only access port 80 servers? - otherwise we'll have to fix
> another address or arrange to re-direct
> 
> 	(say) http://www.bluetail.com/wikie/XXX .. requests to port 80
> 
>         as if they had been requests to http://www.bluetail.com:5999/XXX
> 
> 	Ummm - how do you do that?

You use apache's mod_proxy (in the standard distribution, but not enabled by default)
and mod_rewrite (same situation) and do something like:

RewriteEngine On
RewriteRule ^/wikie/(.*)$ http://127.0.0.1:5999/$1 [L,P]
 
--
Petru Paler, mailto:ppetru@REDACTED
http://www.ppetru.net - ICQ: 41817235



More information about the erlang-questions mailing list