hadzo Posted May 4, 2014 Report Posted May 4, 2014 It would be great to be able to have a subdomain only for support plugin. The idea is to have http://support.domain.com/ which will access http://blesta.domain.com/client/plugin/support_manager/client_main/ BTW Is it possible in Blesta to have cleints only access the Support plugin? Quote
Michael Posted May 4, 2014 Report Posted May 4, 2014 You can edit your .htaccess on cPanel or make a Pointer Domain on InterWorx. Quote
Bit Bayou Posted May 5, 2014 Report Posted May 5, 2014 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 Michael 1 Quote
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.