View Full Version : How to Run ISPconfig on both ports 80 & 443 on reserved IP?
radim_h
13th March 2007, 20:08
Hello,
can somebody give me an advice please?
i have more IP adresses and i'd like to have one of them reserverd just for ISPConfig and Run it on port 80 together with 443 and let the customers choose if they wants to encrypt theirs connection.
How should my /root/ispconfig/httpd/conf/httpd.conf look ?
Or is there possibility to run two login pages thru ISPconfig apache
which one of them (on port80) will have just added link "encrypt you communication" which will redirect to second one on port 443 ?
djtremors
14th March 2007, 08:53
The problem is that ispconfig has it's own httpd service and runs as 'adminispconfig' user, not www/apache/nobody that most apache configs run as.
The other problem is that both the real apache and ispc apache want to bind to port 80 and they can't if the other gets it first.
You then have the option of either proxy forward depending on the ServerName and pass it to the real service (so real apache proxyforwards to ispconfig setup) or just use the port 443 port and begone with the port 80 idea.
The example below is a port 81 non secure with a proxy from the real apache server mapping an external name of (ispconfig.yourhostingdomain.com:80) to ispconfig (remember, 81 isn't SSL as it won't work).
<VirtualHost *:80>
ProxyRequests Off
# Port 81 is NON SSL of ispconfig
ProxyPass / http://localhost:81/
ProxyPassReverse / http://localhost:81/
ProxyPreserveHost On
ServerName ispconfig.yourhostingdomain.com
ServerAdmin webmaster@yourhostingdomain.com
CustomLog /var/log/httpd/ispc-access.log combined
</VirtualHost>
Otherwise, 443 is just port 81 changed in the ispconfig httpd.conf
till
14th March 2007, 09:10
The apache webserver allows it to bind it to a special IP. If you bind the ISPConfig webserver to one IP and your apache webserver to all other IP addresses, this should work. I dont remember the exact apache config syntax, please have a look at the apache manual for details.
djtremors
14th March 2007, 11:20
I think it's something like
Listen 1.2.3.4:80
Listen 2.3.4.5:80
Listen 3.4.5.6:80
Listen 4.5.6.7:80
then
<VirtualHost 1.2.3.4:80>
</VirtualHost>
<VirtualHost 2.3.4.5:80>
</VirtualHost>
etc.
till
14th March 2007, 13:08
Yes, listen should work well. My first thought was the BindAddress syntax but Listen might be even better.
Here is the apache doc as reference:
http://httpd.apache.org/docs/1.3/bind.html
radim_h
22nd March 2007, 20:34
i'm going to try this...
vBulletin® v3.8.7, Copyright ©2000-2012, vBulletin Solutions, Inc.