|
|
Question : Apache : Listen on multiple IP adresses problem
|
|
I have an Apache server, sunning on a computer.
The computer is connected to the network in the office, so that everyone in the office can access the server. But there is also a dial up connection set up.
Here is my problem:
How can I set up Apache so that a person who dials in can access it, as well as the people on the network?
When I have two Listen's set up in the configuration file, Apache does not start up if someone is not dialed in at the moment.
|
Answer : Apache : Listen on multiple IP adresses problem
|
|
Try not specifying any IP address. So, instead of:
Listen 123.123.123.123:80 Port 123.123.123.123:80
use:
Listen 80 Port 80
this should have apache listen on all IPs on the server
|
|
|
|
|