Linked Questions
10 questions linked to/from django apache configuration with WSGIDaemonProcess not working
6 votes
5 answers
18k views
500 internal server error mod_wsgi apache "importerror: No Module named 'django'
Issues running django and apache2/mod_wsgi. I keep getting 500 Internal Server Error. I have tried many combinations of fixes to which none have worked. Any help is greatly appreciated. This is my ...
5 votes
1 answer
6k views
Deploying Django on Apache2 with mod_wsgi - Correct location for Django project?
I am trying to deploy my first Django project on my webserver. I am both new to server configuration and Django so I have a hard time finding my errors. In most tutorials I have seen online, the ...
5 votes
1 answer
4k views
apache mod_wsgi error with django in virtualenv
I can't seem to find a good answer to this. Who needs to own the virtualenv when running it as a WSGIDaemon? I assume on my OS (Ubuntu 16) www-data, but I want to be sure. Trying some new things to ...
2 votes
1 answer
1k views
Django - permission denied
I'm trying to setup Django (Django 1.9.6) on Apache (Apache 2.4.10) in my vps (ubuntu server 15.04). I followed this guide: HERE Unfortunately when I try to visit my website, the server return this ...
0 votes
2 answers
2k views
Django 1.9 Apache error import django.core.handlers.wsgi ImportError: No module named 'django'
I try to deploy my Django project to apache. But I getting an error 500response. And in logs I getting information that Django is missing. I'm using virtualenvto run this project. It's the first time ...
2 votes
1 answer
1k views
Python 3.5 and mod_wsgi
I use Python 3.5 with virtualenv, and I'm trying connect it with mod_wsgi Exception occurred processing WSGI script '/home/myapp/my_app/my_app/wsgi.py'. Traceback (most recent call last): File "/home/...
1 vote
2 answers
1k views
How to deploy django app with apache and mod_wsgi so I can see the website when I type in server's address?
I am trying to deploy an existing django app that is running on my Ubuntu Server 14.04. Everything works on localhost from the server, but I have no idea how to link the server's IP address to the ...
0 votes
2 answers
1k views
Django - 500 internal server error "no module named django"
django return 500 internal server error (apache 2.4.10, ubuntu 15.04, django 1.9.6) apache log: [wsgi:warn] mod_wsgi: Compiled for Python/3.4.2. [wsgi:warn] mod_wsgi: Runtime using Python/3.4.3. [...
1 vote
0 answers
529 views
Setting up Apache2 to use Django with mod_wsgi, No module named 'django' error
I am trying to set up Apache2 to use mod_wsgi to connect to Django. I have a local development server set up running apache2 to serve the majority of the files for the website. However, I wish to ...
0 votes
0 answers
479 views
Multiple Sites with Django, Virtualenv, and WSGI on Apache
The goal is to run Django in daemon mode on Apache via WSGI. I plan to run it on port 8000 to keep it separate from PHP files running at the root of server's URL (unless there's a better way to keep ...