Is it technically possible to setup multiple Django sites using a single SSL certificate on a single IP address with Apache?
Below is an excerpt from my SSL config:
Alias /media/ x:/home/djang-apps/myapp
WSGIScriptAlias / x:/home/djang-apps/myapp/apache/django.wsgi
<Directory x:/home/djang-apps/>
Order allow,deny
Allow from all
</Directory>
One of the issues I've come up against is since I only have a single IP address I have only 1 virtual host therefore how can I reference the varius media folders that contain the css/images/js etc for each Django website as well as the WSGIScriptAlias for each site?
I currently have a wild card certificate for *.foo.com
So I would like to be able to add several sites in this fashion:
website1.foo.com website2.foo.com website3.foo.com