Trying to get html images to work.

This commit is contained in:
Raphaël Numbus
2026-05-17 14:00:36 +02:00
parent 8c4dc60b68
commit bf4d973a32
4 changed files with 14 additions and 14 deletions
+4 -4
View File
@@ -6,10 +6,10 @@ import sys
### Variables -->
SECRET_PATH = "/run/user/{}/numbus".format(os.getuid()) if os.path.exists("/run/user/{}".format(os.getuid())) else "../secrets"
os.makedirs(SECRET_PATH, exist_ok=True)
LOGS_DIR = "../web/logs/"
PAGES_DIR = "../web/pages/"
CONFIG_DIR = "../web/config/"
SIGNALS_DIR = "../web/signal/"
LOGS_DIR = "logs/"
PAGES_DIR = "pages/"
CONFIG_DIR = "config/"
SIGNALS_DIR = "signal/"
### <-- Variables
class BridgeHandler(http.server.SimpleHTTPRequestHandler):