Jump to content

Recommended Posts

Posted

I've been playing around with load balancing and port sharing using mod_proxy, which may help you out here too?

 

I'd recommend testing it out before sticking it in production use!

 

Assuming you've set up either a CNAME or A record for the support sub domain you want to point it to your server, you'd append something like this to your httpd.conf file:

<VirtualHost 10.1.0.101:80>  
    ServerAdmin admin@domain.com
    ServerName support.domain.com

    ProxyRequests off
    <Proxy *>
            Order deny,allow
            Allow from all
    </Proxy>
   <Location />
            ProxyPass http://blesta.domain.com:80/client/plugin/support_manager/client_main/
            ProxyPassReverse http://blesta.domain.com:80/client/plugin/support_manager/client_main/
   </Location>
</VirtualHost>  

Which would proxy [forward] http://support.domain/something to http://blesta.domain.com:80/client/plugin/support_manager/client_main/something

Please sign in to comment

You will be able to leave a comment after signing in



Sign In Now
×
×
  • Create New...