mirror of
https://github.com/fergalmoran/dss.api.git
synced 2026-01-06 08:33:57 +00:00
Initial commit
This commit is contained in:
16
apache/django_live.wsgi
Executable file
16
apache/django_live.wsgi
Executable file
@@ -0,0 +1,16 @@
|
||||
import os
|
||||
import sys
|
||||
|
||||
path = '/var/www/deepsouthsounds.com/dss'
|
||||
if path not in sys.path:
|
||||
sys.path.append(path)
|
||||
|
||||
path = '/var/www/deepsouthsounds.com'
|
||||
if path not in sys.path:
|
||||
sys.path.append(path)
|
||||
|
||||
|
||||
os.environ['DJANGO_SETTINGS_MODULE'] = 'dss.settings'
|
||||
|
||||
import django.core.handlers.wsgi
|
||||
application = django.core.handlers.wsgi.WSGIHandler()
|
||||
Reference in New Issue
Block a user