Fixed port bug
This commit is contained in:
@@ -15,7 +15,8 @@ router.get("/", (req, res) => {
|
|||||||
page_title: app_conf.name,
|
page_title: app_conf.name,
|
||||||
css_path: path.join(app_conf.paths.css.web, "stylesheet.css"),
|
css_path: path.join(app_conf.paths.css.web, "stylesheet.css"),
|
||||||
protocol: app_conf.protocol,
|
protocol: app_conf.protocol,
|
||||||
host: app_conf.host
|
host: app_conf.host,
|
||||||
|
port: app_conf.port
|
||||||
});
|
});
|
||||||
});
|
});
|
||||||
|
|
||||||
|
|||||||
+1
-1
@@ -25,7 +25,7 @@
|
|||||||
style="display: flex; flex-direction: column; justify-content: space-between; font-size: 150%; margin-top: 15px; margin-bottom: 15px;">
|
style="display: flex; flex-direction: column; justify-content: space-between; font-size: 150%; margin-top: 15px; margin-bottom: 15px;">
|
||||||
<div style="display: flex; flex-direction: row; justify-content: space-evenly;">
|
<div style="display: flex; flex-direction: row; justify-content: space-evenly;">
|
||||||
<label>CRTelemetry SQLite3</label>
|
<label>CRTelemetry SQLite3</label>
|
||||||
<a href="<%= protocol %>://<%= host %>/app">Enter</a>
|
<a href="<%= protocol %>://<%= host %>:<%= port %>/app">Enter</a>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
</body>
|
</body>
|
||||||
|
|||||||
Reference in New Issue
Block a user