User:
Title: not working
Content:
<VirtualHost *:80>
WSGIScriptReloading Off
WSGIProcessGroup django
WSGIDaemonProcess django user=gizmore group=gizmore threads=5 python-home=/home/gizmore/.virtualenvs/djangodev/ home=/home/gizmore/PycharmProjects/django/
WSGIScriptAlias / /home/gizmore/PycharmProjects/django/testproj/wsgi.py process-group=django application-group=%{GLOBAL}
ServerName django.giz.org
<Directory /home/gizmore/PycharmProjects/django/testproj>
Options +FollowSymLinks +Indexes +ExecCGI
# <Files wsgi.py>
Require all granted
# </Files>
</Directory>
ErrorLog /home/gizmore/www/pygdo.error.log
CustomLog /home/gizmore/www/pygdo.access.log combined
</VirtualHost>
Edit |
Back