I have one Django project which is already hosted on domain name say example.com. And its home page is
example.com/demotool/
Now I developed another Django project and want to host on the same apache server, same domain name, with different URL set.
For example, its root URL will be
example.com/demotool/client1/
I have separate project_name.wsgi file for both projects.
Directory structure is like
/home/user/public_html/example.com/project/project_name.wsgi
/home/user/public_html/example.com/project1/project1_name.wsgi
content of wsgi file is
> import os import sys
> sys.path.append('/home/user/public_html/example.com/project/')
> os.environ['DJANGO_SETTINGS_MODULE'] = 'project.settings'
> import django.core.handlers.wsgi
> application = django.core.handlers.wsgi.WSGIHandler()
content of /etc/apache2/sites-available/example.com is
> <VirtualHost *:80>
> ServerName example.com
> ServerAlias www.example.com
> WSGIScriptAlias / /home/user/public_html/example.com/project/project_name.wsgi
> Alias /static/ /home/user/public_html/example.com/project/static/
> <Location "/static/">
> Options -Indexes
> </Location>
> </VirtualHost>
Now what should I add or modify in the apache configuration file to add another project in the same domain name and same server. There are duplicates of this question but I don't get it how to make it work please help. Thanks in advance
I've always done it like this:
I hope this helps!