From c1548910609a24b04ac8170511a0b19604a2d337 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 1a67141..17f74b6 100644 --- a/src/App/Container.purs +++ b/src/App/Container.purs @@ -112,8 +112,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 PageEvent = EventPageAuthentication PageAuthentication.Output