2011-08-31 03:46:55 +00:00
|
|
|
#!/usr/bin/env python
|
|
|
|
|
|
|
|
import os
|
|
|
|
import socket
|
|
|
|
|
|
|
|
import django.core.handlers.wsgi
|
|
|
|
|
|
|
|
hostname = socket.gethostname()
|
2011-09-07 13:02:35 +00:00
|
|
|
os.environ['DJANGO_SETTING_MODULE'] = 'regluit.settings_%s' % hostname
|
2011-08-31 03:46:55 +00:00
|
|
|
application = django.core.handlers.wsgi.WSGIHander()
|