mirror of
https://github.com/DarrenOfficial/dpaste.git
synced 2024-11-15 16:12:51 +11:00
14 lines
283 B
Text
14 lines
283 B
Text
|
import os, sys
|
||
|
import site
|
||
|
|
||
|
site.addsitedir('/opt/webapps/pastebin/lib/python2.5/site-packages')
|
||
|
|
||
|
|
||
|
sys.stdout = sys.stderr
|
||
|
|
||
|
os.environ['DJANGO_SETTINGS_MODULE'] = 'pastebin.conf.local.settings'
|
||
|
|
||
|
import django.core.handlers.wsgi
|
||
|
|
||
|
application = django.core.handlers.wsgi.WSGIHandler()
|