Skip to content Skip to sidebar Skip to footer

Deploying Django With Apache Using Wsgi.py

I'm trying to deploy a Django project on a linode server that has apache, some other django projects and a php project on it. Also my project is in a virualenv and the other django

Solution 1:

Try using following code:

<Directory /home/nccylli/www/ylli_transactions/ylli_transactions>
<Files wsgi.py>
  Order allow,deny
  Allow from all
</Files>
</Directory>

Post a Comment for "Deploying Django With Apache Using Wsgi.py"