Fixed port bug

This commit is contained in:
2025-05-19 12:12:33 +03:00
parent 7ce2d111be
commit 8d75338676
2 changed files with 3 additions and 2 deletions
+2 -1
View File
@@ -15,7 +15,8 @@ router.get("/", (req, res) => {
page_title: app_conf.name,
css_path: path.join(app_conf.paths.css.web, "stylesheet.css"),
protocol: app_conf.protocol,
host: app_conf.host
host: app_conf.host,
port: app_conf.port
});
});