浏览代码

Add bind and use self-hosted headscale

Yuri Iozzelli 2 年之前
父节点
当前提交
1cf3683ff2
共有 1 个文件被更改,包括 8 次插入2 次删除
  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>