Im trying to setup the virtualhost in my apache server and its not working as expected.
First, it all works fine if I try localhost..but when I try www.test.com it does take me to the actual website..How do I register my changes?
WSGIPythonPath /var/www/html/apache-virtual-env/lib/python2.7/site-packages
<VirtualHost *:80>
ServerName test.com
ServerAlias www.test.com
WSGIScriptAlias / /var/www/html/Deployment/wsgi.py
<Directory /var/www/html/>
#Options Indexes FollowSymLinks Includes ExecCGI
#AllowOverride All
Order deny,allow
Allow from all
</Directory>
</VirtualHost>