From a42d6a5a4f792a21706c8e4a02114080914022f9 Mon Sep 17 00:00:00 2001 From: Philippe Pittoli Date: Mon, 9 Dec 2024 20:04:05 +0100 Subject: [PATCH] Local addresses. --- src/App/Container.purs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/App/Container.purs b/src/App/Container.purs index 12581df..6334d0c 100644 --- a/src/App/Container.purs +++ b/src/App/Container.purs @@ -110,8 +110,8 @@ foreign import unsafeSetInnerHTML :: HTMLElement -> RawHTML -> Effect Unit -- | Current limit is 30 minutes (`max_keepalive` = 60, 60 * 30 seconds = 30 minutes). max_keepalive = 60 :: Int -wsURLauthd = "wss://www.netlib.re/ws/authd" :: String -wsURLdnsmanagerd = "wss://www.netlib.re/ws/dnsmanagerd" :: String +wsURLauthd = "ws://localhost:8080" :: String +wsURLdnsmanagerd = "ws://localhost:8081" :: String data Action = Initialize