Actions
How to redirect the Scol port 8080 to the Apache port 80 ?¶
Configure your vhost file like this :
<VirtualHost *:80> ServerAdmin adress@mydomain.tld ProxyRequests Off <Proxy *> Order deny,allow Allow from all </Proxy> ProxyPass / http://scoldomain.tld:8080 ProxyPassReverse / http://scoldomain.tld:8080 ServerName domain.tld </VirtualHost>where :
- mydomain is your SMTP server (if any)
- scoldomain is the Scol domain (the address of your Scol server, if any)
- domain is the Apache2 domain (the address of your web server, your domain name)
Updated by iri about 12 years ago · 2 revisions