From 97cc9d91f0cda6237a5dd91fe8cdc02ea8ec3892 Mon Sep 17 00:00:00 2001 From: Claude Brisson Date: Fri, 9 Jun 2023 18:16:50 +0200 Subject: [PATCH] Disable port 8080 --- .../main/kotlin/org/jeudego/pairgoth/application/Pairgoth.kt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/webserver/src/main/kotlin/org/jeudego/pairgoth/application/Pairgoth.kt b/webserver/src/main/kotlin/org/jeudego/pairgoth/application/Pairgoth.kt index 979f8f9..ef46c26 100644 --- a/webserver/src/main/kotlin/org/jeudego/pairgoth/application/Pairgoth.kt +++ b/webserver/src/main/kotlin/org/jeudego/pairgoth/application/Pairgoth.kt @@ -108,7 +108,7 @@ private fun launchServer() { } // create server - val server = Server(8080) // CB TODO port is to be calculated from webapp.url + val server = Server() // register webapps server.handler = ContextHandlerCollection(apiContext, viewContext)