> but I dont know where to add that config, another thing I've noticed > is that my httpd.conf is located at /etc/apache2/ and the size of the > file is 0 bytes, is this normal?
As Deryck noted, httpd.conf is referenced in apache2.conf; instead of putting virtualhosts in apache2.conf though, you can consider adding each individual site to sites-available. After it is added there, you can type: # a2ensite And it will list all the sites, select the one you want enabled. Or you can just create a symlink from sites-available/yoursite.conf -> sites-enabled/yoursite.conf Kelvin --~--~---------~--~----~------------~-------~--~----~ You received this message because you are subscribed to the Google Groups "Django users" group. To post to this group, send email to [email protected] To unsubscribe from this group, send email to [EMAIL PROTECTED] For more options, visit this group at http://groups.google.com/group/django-users?hl=en -~----------~----~----~----~------~----~------~--~---

