Project

General

Profile

Actions

Scol server redirection 8080 80 » History » Revision 1

Revision 1/2 | Next »
iri, 10/07/2012 05:49 PM


h1.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 over 11 years ago · 1 revisions