I want to setup my apache2 to do the following.
Listen for connections on example.com:80 and answer to any host
Listen to connections on foo.example.com:80 and only answer to localhost
Is this possible?
|
I want to setup my apache2 to do the following. Listen for connections on example.com:80 and answer to any host Listen to connections on foo.example.com:80 and only answer to localhost Is this possible? |
|||
|
|
|
Sure, don't you edit your httpd.conf file and just add
in the virtualhost responsible for example.com:80 and
in the one responsible for foo.example.com:80? Or am I missing something? |
|||