diff options
Diffstat (limited to 'main.py')
| -rw-r--r-- | main.py | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/main.py b/main.py index 44c8d26..deb3f74 100644 --- a/main.py +++ b/main.py @@ -73,9 +73,9 @@ class HTMLServer: # list of allowed paths self.allowed_paths: dict[str, dict] = { - "/": {"path": "index.html", "encoding": "css/html"}, - "/robots.txt": {"path": "page/robots.txt", "encoding": "text"}, - "/favicon.ico": {"path": "page/favicon.ico", "encoding": "bin"}, + "/": {"path": "www/index.html", "encoding": "css/html"}, + "/robots.txt": {"path": "www/robots.txt", "encoding": "text"}, + "/favicon.ico": {"path": "www/favicon.ico", "encoding": "bin"}, "/css/styles.css": {"path": None, "encoding": "css/html"}, } |