|
Home > Archive > Apache Server configuration support > September 2007 > adding a 2nd ssl connection on a different port & ip address
You are viewing an archived Text-only version of the thread.
To view this thread in it's original format and/or if you want to reply to
this thread please [click here]
| Author |
adding a 2nd ssl connection on a different port & ip address
|
|
| dj.brainstorm@gmail.com 2007-09-11, 1:20 pm |
| Hi,
I am wondering if anyone can point me in the direction of a simple how
to guide. I have a webserver running apache 2 which has 3 ip
addresses, 1 of which i have virtual hosting on, the 2nd of which i
have an http/https site. I would like to add the 3rd ip and use it
exclusively for admin purposes over some type of secure connection...
this does not need to be be port 443... I am currently using webmin to
admininster my server but will happily get my hands dirty....
Anyone care to point me in the right direction?
Many thanks
Brian
| |
| Davide Bianchi 2007-09-11, 1:20 pm |
| On 2007-09-11, dj.brainstorm@gmail.com <dj.brainstorm@gmail.com> wrote:
> I am wondering if anyone can point me in the direction of a simple how
> to guide. I have a webserver running apache 2 which has 3 ip
> addresses, 1 of which i have virtual hosting on, the 2nd of which i
> have an http/https site. I would like to add the 3rd ip and use it
> exclusively for admin purposes over some type of secure connection...
Simply add a new NameVirtualHost section with the 3rd ip address
and define a VHost on that address...
NameVirtualHost your.third.ip.address:portnumber
<VirtualHost your.third.ip.address:portnumber>
....
</VirtualHost>
Should be enough.
See the documentation about IP-based virtual hosts
Davide
--
Windows NT source code now available... download WIN2000.BAS now!
-- From a Slashdot.org post
|
|
|
|
|