From 85b7772862a2aaee9506ccd503e4c2d97d008c25 Mon Sep 17 00:00:00 2001 From: Greg Gauthier Date: Wed, 19 Jul 2023 08:19:05 +0100 Subject: [PATCH] Port 8000 is a bad dev port. Everything runs on 8000 --- src/main/resources/application.properties | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/main/resources/application.properties b/src/main/resources/application.properties index c3529e5..b4a876e 100644 --- a/src/main/resources/application.properties +++ b/src/main/resources/application.properties @@ -1,6 +1,7 @@ #Spring Boot server configuration +#Port 8000 is used by other things on my workstations server.address=0.0.0.0 -server.port=8000 +server.port=9020 #H2 console web access configuration #Open "http://0.0.0.0:8000/h2-console" and hit "Connect" button