From 62906adcd4983726e902b9acc3386c034b3b910f Mon Sep 17 00:00:00 2001 From: Tod Kurt <todbot@users.noreply.github.com> Date: Sat, 16 Jul 2022 11:37:12 -0700 Subject: [PATCH] blink1-tiny-server: move default port to 8934 from 8000, #52 --- server/blink1-tiny-server.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/server/blink1-tiny-server.c b/server/blink1-tiny-server.c index bce18feb..493d9929 100644 --- a/server/blink1-tiny-server.c +++ b/server/blink1-tiny-server.c @@ -42,7 +42,7 @@ static bool show_html = true; static bool enable_logging = false; static char http_listen_host[120] = "localhost"; // or 0.0.0.0 for any -static int http_listen_port = 8000; +static int http_listen_port = 8934; // was 8000 static char http_listen_url[100]; // will be "http://localhost:8000" typedef struct cache_info_ { -- GitLab