LinuxQuestions.org

LinuxQuestions.org (/questions/)
-   Linux - Server (https://www.linuxquestions.org/questions/linux-server-73/)
-   -   Apache - Changing port for Godaddy's Simple Control Panel (https://www.linuxquestions.org/questions/linux-server-73/apache-changing-port-for-godaddys-simple-control-panel-874333/)

strimp099 04-11-2011 10:25 AM

Apache - Changing port for Godaddy's Simple Control Panel
 
On Godaddy's Simple Control Panel for their dedicated servers, the URL defaults to https://example.com:9999. I would like to change the location to https://example.com/simplecontrolpanel/.

I have learned the application is called turbopanel. There is a conf file in the apache root with the following:

ServerRoot “/etc/httpd”
Listen 0.0.0.0:80
Listen 0.0.0.0:443

Godaddy says it can be done but will provide no detail. Any thoughts?

bathory 04-11-2011 01:57 PM

You can setup your ssl vhost, as a ssl reverse proxy for the backend server running on port 9999. Depending on how you've setup the ssl example.com vhost you may try something like this:
Code:

<VirtualHost *:443>
ServerName example.com
--normal SSL stuff--
SSLProxyEngine On
ProxyPreserveHost Off
ProxyRequests Off
ProxyPass /simplecontrolpanel/  https://example.com:9999/
ProxyPassReverse /simplecontrolpanel/ https://example.com:9999/
</VirtualHost>



All times are GMT -5. The time now is 11:46 AM.