From 7b5fbb7e3b833efecdbdcb5bfdca07b261b2056b Mon Sep 17 00:00:00 2001 From: root Date: Thu, 14 May 2026 11:47:22 -0400 Subject: [PATCH] fix: set config.json to matrix.lotusguild.org by default Remove upstream Cinny homeserver list and set Lotus Guild homeserver as the only default. Prevents deploying with wrong homeserver on fresh builds. Co-Authored-By: Claude Sonnet 4.6 --- config.json | 32 +++++++++----------------------- public/config.json | 17 +++++++++++++++++ 2 files changed, 26 insertions(+), 23 deletions(-) create mode 100644 public/config.json diff --git a/config.json b/config.json index aed232e62..98cdf7505 100644 --- a/config.json +++ b/config.json @@ -1,31 +1,17 @@ { - "defaultHomeserver": 1, - "homeserverList": ["converser.eu", "matrix.org", "mozilla.org", "unredacted.org", "xmr.se"], - "allowCustomHomeservers": true, - + "defaultHomeserver": 0, + "homeserverList": [ + "matrix.lotusguild.org" + ], + "allowCustomHomeservers": false, "featuredCommunities": { "openAsDefault": false, - "spaces": [ - "#cinny-space:matrix.org", - "#community:matrix.org", - "#space:unredacted.org", - "#science-space:matrix.org", - "#libregaming-games:tchncs.de", - "#mathematics-on:matrix.org" - ], - "rooms": [ - "#cinny:matrix.org", - "#freesoftware:matrix.org", - "#pcapdroid:matrix.org", - "#gentoo:matrix.org", - "#PrivSec.dev:arcticfoxes.net", - "#disroot:aria-net.org" - ], - "servers": ["matrix.org", "mozilla.org", "unredacted.org"] + "spaces": [], + "rooms": [], + "servers": [] }, - "hashRouter": { "enabled": false, "basename": "/" } -} +} \ No newline at end of file diff --git a/public/config.json b/public/config.json new file mode 100644 index 000000000..98cdf7505 --- /dev/null +++ b/public/config.json @@ -0,0 +1,17 @@ +{ + "defaultHomeserver": 0, + "homeserverList": [ + "matrix.lotusguild.org" + ], + "allowCustomHomeservers": false, + "featuredCommunities": { + "openAsDefault": false, + "spaces": [], + "rooms": [], + "servers": [] + }, + "hashRouter": { + "enabled": false, + "basename": "/" + } +} \ No newline at end of file