On 02/28/2005 03:20:20 PM, Alexander Dalloz wrote:
You can do so by configuring Apache using mod_proxy or mod_rewrite. Please see the Apache documentation. As an *untested* guideline:
a) mod_proxy
ProxyVia On ProxyPass /webmin http://localhost:10000 ProxyPassReverse /webmin http://localhost:10000
b) mod_rewrite
RewriteEngine On RewriteRule ^/webmin(.*) http://localhost:10000/$1 [P,L] RewriteRule ^proxy:.* - [F]
This is given that Apache does server other sites too on standard HTTP
port 80.
If something else does run on port 80 - you can probably still do it either with a virtual domain, or with multihoming. Apache can deal with both.
-- Michael A. Peters http://mpeters.us/