From 4dacfb53aa8528b38f6672e587301883b88ea3ac Mon Sep 17 00:00:00 2001 From: MayaTheShy Date: Mon, 16 Feb 2026 00:53:51 -0500 Subject: [PATCH] fix: Update SERVER_URL to use secure HTTPS for web server connection --- webbridge.lua | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/webbridge.lua b/webbridge.lua index 6b4510f..f2e318b 100644 --- a/webbridge.lua +++ b/webbridge.lua @@ -2,7 +2,7 @@ -- This script forwards turtle status updates to the web server -- Place this on a computer connected to the wireless network -local SERVER_URL = "http://localhost:3001" -- Change to your server address +local SERVER_URL = "https://turtles.spatulaa.com" -- Change to your server address local CHANNEL_RECEIVE = 101 local STATUS_CHANNEL = 102