aboutsummaryrefslogtreecommitdiff
path: root/backend/main.py
diff options
context:
space:
mode:
Diffstat (limited to 'backend/main.py')
-rw-r--r--backend/main.py8
1 files changed, 6 insertions, 2 deletions
diff --git a/backend/main.py b/backend/main.py
index 1678f24..ff703be 100644
--- a/backend/main.py
+++ b/backend/main.py
@@ -1,8 +1,12 @@
import HTTP
import json
+import config
def playout(filename):
- return ["", [('Content-Type','text/html'), ('X-Accel-Redirect', filename)], None]
+ return ["", [('Content-Type','text/html'), ("X-Accel-Redirect", filename)], None]
+
+def home():
+ return ["", [('Content-Type','text/html'), ("Location", config.homepage)], "302 Home"]
def route(path, env, session, post):
if path[0] == "8cabc1fce52bcb565ae203267ce7e73f69a9272e":
@@ -11,7 +15,7 @@ def route(path, env, session, post):
return playout("interface/listing.htm")
# Default path
- return ["", [("Content-type", "text/html")], "404 None such"]
+ return home()
def handle_request(env, response):
path = env.get('PATH_INFO', '').lstrip('/').split('/')