Strange behaviour on my apache server.
I've configured my apache server and Askbot installation for one domain, mysite.com.
Servername is also for this domain.
ServerName mysite.com
If I point mysite.com to IP of the server with Askbot, I see the domain:
mysite.com/questions
If I point an other domain, mysite2.com, to the same server IP, I get
mysite2.com/questions
What could be wrong? ServerName is mysite.com, so it should not be possible to see mysite2.com/questions
Full Virtual host:
WSGISocketPrefix /home/mysitedjango/FolderForWSGISocketPrefix
WSGIPythonEggs /home/mysitedjango/FolderForWSGIPythonEggs
WSGIPythonHome /usr
<VirtualHost IP:80>
ServerAdmin mysite@mysite.com
DocumentRoot /home/mysitedjango
ServerName mysite.com
Alias /m/ /home/mysitedjango/askbot/skins/
Alias /static /home/mysitedjango/static
Alias /upfiles /home/mysitedjango/askbot/upfiles
<DirectoryMatch /home/mysitedjango/askbot/skins/([^/]+)/media>
Order deny,allow
Allow from all
</DirectoryMatch>
<Directory /home/mysitedjango/askbot/upfiles>
Order deny,allow
Allow from all
</Directory>
WSGIDaemonProcess askbot2
WSGIProcessGroup askbot2
WSGIScriptAlias / /home/mysitedjango/django.wsgi
CustomLog /var/log/apache2/askbot_mysite/access_log common
ErrorLog /var/log/apache2/askbot_mysite/error_log
LogLevel debug
</VirtualHost>
If you only specify one virtual host, then Apache will use it for every request. Try creating a second one with ServerName mysite2.com and ServerAlias * (make sure you put it AFTER the mysite.com virtual host block).
Create your Q&A site at askbot.com. Managed Askbot hosting at just $15/mo. Dedicated hosting, support contracts, consulting services.
create your Q&A siteAsked: 2012-07-31 05:42:08 -0500
Seen: 67 times
Last updated: Jul 31 '12
Copyright Askbot, 2010-2011. Content on this site is licensed under a Creative Commons Attribution Share Alike 3.0 license.
Do you have another virtualhost for port 80?
bgenevaux ( 2012-07-31 06:20:08 -0500 )editMarked offtopic, maybe for possible future cleanup.
Evgeny ( 2012-08-02 09:05:50 -0500 )edit