This commit is contained in:
Simon
2026-02-08 17:16:48 +00:00
parent 1dc6048d9c
commit 1becdce9ff
2 changed files with 5 additions and 0 deletions

View File

@@ -106,6 +106,10 @@ def videos_proxy():
def index():
return send_from_directory(app.static_folder, 'index.html')
@app.route('/favicon.ico')
def favicon():
return send_from_directory(app.static_folder, 'favicon.ico')
@app.route('/api/stream', methods=['POST', 'GET', 'HEAD'])
def stream_video():
# Note: <video> tags perform GET. To support your POST requirement,

View File

@@ -4,6 +4,7 @@
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Hottub</title>
<link rel="icon" href="/favicon.ico" type="image/x-icon">
<link rel="stylesheet" href="static/style.css">
</head>
<body>