Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations derfloh on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

how can i change the http domain to an other http domain wjot apache

Status
Not open for further replies.

Guest_imported

New member
Jan 1, 1970
0
how can i change the http ip domain to an http namedomain
 
Uncomment or add this line:

NameVirtualHost *

Then define all you vhosts like this:

<VirtualHost *>
ServerName yourdomain.com
Other stuff
</VirtualHost>

This should be all you need for name based addressing. You can add anything to your vhost containers that you would add to the main server.
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top