Hi,
If you need to bind port 80 while keeping apache alive you could use
mod_proxy

NameVirtualHost *:80

<VirtualHost *:80>
    ServerName ape.mydomain.com

    ProxyRequests Off
    ProxyPreserveHost On
    <Proxy *>
        Order deny,allow
        Allow from all
    </Proxy>

    ProxyPass / http://localhost:6969/
    ProxyPassReverse / http://localhost:6969/
    <Location />
        Order allow,deny
        Allow from all
    </Location>
</VirtualHost>

This should work, your users will think they are connected to port 80

-- 
You received this message because you are subscribed to the Google
Groups "APE Project" group.
To post to this group, send email to [email protected]
To unsubscribe from this group, send email to
[email protected]
For more options, visit this group at
http://groups.google.com/group/ape-project?hl=en
---
APE Project (Ajax Push Engine)
Official website : http://www.ape-project.org/
Git Hub : http://github.com/APE-Project/

Reply via email to