From 269facd63f8ab0f84eae7e2cfbd7fba9c4b9ba94 Mon Sep 17 00:00:00 2001 From: Justine Pelletreau Date: Fri, 13 Jan 2023 17:30:13 +0100 Subject: [PATCH] port 8000 --- flog/src/main.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/flog/src/main.rs b/flog/src/main.rs index 33c0fed..4942504 100644 --- a/flog/src/main.rs +++ b/flog/src/main.rs @@ -99,7 +99,7 @@ fn main() { //Web conf let webconf = WebsrvConfig { nbr_of_threads: 10, - bind_addr: String::from("0.0.0.0:80"), + bind_addr: String::from("0.0.0.0:8000"), root_folder: String::from("./html"), }; start_websrv(webconf);