Jelajahi Sumber

Add bind and use self-hosted headscale

Yuri Iozzelli 2 tahun lalu
induk
melakukan
1cf3683ff2
1 mengubah file dengan 8 tambahan dan 2 penghapusan
  1. 8 2
      index.html

+ 8 - 2
index.html

@@ -40,11 +40,17 @@
         import { init } from "/tun/tailscale_tun.js";
         import { showPeers, showLoginURL } from "/tun/test/ui.js";
 
-        const { loginURL, ipStack } = await init({ netMapCallback: showPeers });
+        const { loginURL, ipStack } = await init({
+            netMapCallback: showPeers,
+            dnsIp: "8.8.8.8",
+            controlURL: "https://headscale.yuri.space",
+            exitNodeIp: "100.64.0.3",
+        });
         showLoginURL(loginURL);
-        const { listen, connect, parseIP } = await ipStack;
+        const { listen, connect, bind, parseIP } = await ipStack;
         window.listen = listen;
         window.connect = connect;
+        window.bind = bind;
         window.parseIP = parseIP;
     </script>
     <script src="./xterm/xterm.js"></script>