Moved wolnelektury.fcgi and wolnelektury.wsgi to deploy subdirectory of project folder.
authorMarek Stępniowski <marek@stepniowski.com>
Wed, 1 Oct 2008 11:18:43 +0000 (13:18 +0200)
committerMarek Stępniowski <marek@stepniowski.com>
Wed, 1 Oct 2008 11:18:43 +0000 (13:18 +0200)
wolnelektury.fcgi [deleted file]
wolnelektury.wsgi [deleted file]
wolnelektury/deploy/wolnelektury.fcgi [new file with mode: 0644]
wolnelektury/deploy/wolnelektury.wsgi [new file with mode: 0644]

diff --git a/wolnelektury.fcgi b/wolnelektury.fcgi
deleted file mode 100644 (file)
index fd41ab2..0000000
+++ /dev/null
@@ -1,22 +0,0 @@
-#!/usr/bin/env python
-from os.path import abspath, dirname, join
-import sys
-
-# Redirect sys.stdout to sys.stderr for bad libraries like geopy that use
-# print statements for optional import exceptions.
-sys.stdout = sys.stderr
-
-# Add apps and lib directories to PYTHONPATH
-sys.path.insert(0, abspath(join(dirname(__file__), '../apps')))
-sys.path.insert(0, abspath(join(dirname(__file__), '../lib')))
-
-# Emulate manage.py path hacking.
-sys.path.insert(0, abspath(join(dirname(__file__), "../../")))
-sys.path.insert(0, abspath(join(dirname(__file__), "../")))
-
-# Run Django
-os.environ['DJANGO_SETTINGS_MODULE'] = 'settings'
-
-from django.core.servers.fastcgi import runfastcgi
-runfastcgi(method='threaded', daemonize='false')
-
diff --git a/wolnelektury.wsgi b/wolnelektury.wsgi
deleted file mode 100644 (file)
index 2732713..0000000
+++ /dev/null
@@ -1,22 +0,0 @@
-#!/usr/bin/env python
-from os.path import abspath, dirname, join
-import sys
-
-# Redirect sys.stdout to sys.stderr for bad libraries like geopy that use
-# print statements for optional import exceptions.
-sys.stdout = sys.stderr
-
-# Add apps and lib directories to PYTHONPATH
-sys.path.insert(0, abspath(join(dirname(__file__), '../apps')))
-sys.path.insert(0, abspath(join(dirname(__file__), '../lib')))
-
-# Emulate manage.py path hacking.
-sys.path.insert(0, abspath(join(dirname(__file__), "../../")))
-sys.path.insert(0, abspath(join(dirname(__file__), "../")))
-
-# Run Django
-os.environ['DJANGO_SETTINGS_MODULE'] = 'settings'
-
-from django.core.handlers.wsgi import WSGIHandler
-application = WSGIHandler()
-
diff --git a/wolnelektury/deploy/wolnelektury.fcgi b/wolnelektury/deploy/wolnelektury.fcgi
new file mode 100644 (file)
index 0000000..ba9fbef
--- /dev/null
@@ -0,0 +1,22 @@
+#!/usr/bin/env python
+from os.path import abspath, dirname, join
+import sys
+
+# Redirect sys.stdout to sys.stderr for bad libraries like geopy that use
+# print statements for optional import exceptions.
+sys.stdout = sys.stderr
+
+# Add apps and lib directories to PYTHONPATH
+sys.path.insert(0, abspath(join(dirname(__file__), '../../apps')))
+sys.path.insert(0, abspath(join(dirname(__file__), '../../lib')))
+
+# Emulate manage.py path hacking.
+sys.path.insert(0, abspath(join(dirname(__file__), "../../")))
+sys.path.insert(0, abspath(join(dirname(__file__), "../")))
+
+# Run Django
+os.environ['DJANGO_SETTINGS_MODULE'] = 'settings'
+
+from django.core.servers.fastcgi import runfastcgi
+runfastcgi(method='threaded', daemonize='false')
+
diff --git a/wolnelektury/deploy/wolnelektury.wsgi b/wolnelektury/deploy/wolnelektury.wsgi
new file mode 100644 (file)
index 0000000..4fead21
--- /dev/null
@@ -0,0 +1,22 @@
+#!/usr/bin/env python
+from os.path import abspath, dirname, join
+import sys
+
+# Redirect sys.stdout to sys.stderr for bad libraries like geopy that use
+# print statements for optional import exceptions.
+sys.stdout = sys.stderr
+
+# Add apps and lib directories to PYTHONPATH
+sys.path.insert(0, abspath(join(dirname(__file__), '../../apps')))
+sys.path.insert(0, abspath(join(dirname(__file__), '../../lib')))
+
+# Emulate manage.py path hacking.
+sys.path.insert(0, abspath(join(dirname(__file__), "../../")))
+sys.path.insert(0, abspath(join(dirname(__file__), "../")))
+
+# Run Django
+os.environ['DJANGO_SETTINGS_MODULE'] = 'settings'
+
+from django.core.handlers.wsgi import WSGIHandler
+application = WSGIHandler()
+