From 2fcb061a09cb237354ca6a5b7a0309745d3e4caf Mon Sep 17 00:00:00 2001 From: cbdev Date: Thu, 15 Jul 2021 23:53:52 +0200 Subject: Implement basic configuration --- backend/config.py | 1 + backend/main.py | 8 ++++++-- 2 files changed, 7 insertions(+), 2 deletions(-) create mode 100644 backend/config.py (limited to 'backend') diff --git a/backend/config.py b/backend/config.py new file mode 100644 index 0000000..6cfab69 --- /dev/null +++ b/backend/config.py @@ -0,0 +1 @@ +homepage = "https://stumpf.es/" 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('/') -- cgit v1.2.3