diff --git a/scripts/build_local_reticulum.sh b/scripts/build_local_reticulum.sh
index ea4ceea4ca15851c731b7bdf870fb86da9ac7d88..9a19f9f202b688b27213b0478f9e1a14e67d2620 100755
--- a/scripts/build_local_reticulum.sh
+++ b/scripts/build_local_reticulum.sh
@@ -4,4 +4,4 @@ if [ ! -e ../reticulum ]; then
   echo "This script assumes reticulum is checked out in a sibling to this folder."
 fi
 
-rm -rf ../reticulum/priv/static ; GENERATE_SMOKE_TESTS=true BASE_ASSETS_PATH=https://hubs.test:4000/ yarn build -- --output-path ../reticulum/priv/static 
+rm -rf ../reticulum/priv/static ; GENERATE_SMOKE_TESTS=true BASE_ASSETS_PATH=https://hubs.local:4000/ yarn build -- --output-path ../reticulum/priv/static 
diff --git a/webpack.config.js b/webpack.config.js
index 5bc3f63e25adf2f36076ad3bc7bf9f72c085f706..6f66a85c9c59fb1cbd5a339519af6eec23987eb7 100644
--- a/webpack.config.js
+++ b/webpack.config.js
@@ -44,7 +44,7 @@ function createHTTPSConfig() {
               },
               {
                 type: 2,
-                value: "hubs.test"
+                value: "hubs.local"
               }
             ]
           }
@@ -97,7 +97,7 @@ const config = {
     https: createHTTPSConfig(),
     host: "0.0.0.0",
     useLocalIp: true,
-    public: "hubs.test:8080",
+    public: "hubs.local:8080",
     port: 8080,
     before: function(app) {
       // networked-aframe makes HEAD requests to the server for time syncing. Respond with an empty body.