mirror of
https://github.com/BigBodyCobain/Shadowbroker.git
synced 2026-09-23 09:20:51 +02:00
fix: add default relay peer so fresh installs can sync Infonet
On a fresh Docker (or local) install, MESH_RELAY_PEERS was empty and no bootstrap manifest existed, leaving the Infonet node with zero peers to sync from — causing perpetual "RETRYING" status. Set cipher0.shadowbroker.info:8000 as the default relay peer in both the config defaults and docker-compose.yml so new installations sync immediately after activating the wormhole.
This commit is contained in:
@@ -27,7 +27,7 @@ class Settings(BaseSettings):
|
||||
MESH_RNS_ENABLED: bool = False
|
||||
MESH_ARTI_ENABLED: bool = False
|
||||
MESH_ARTI_SOCKS_PORT: int = 9050
|
||||
MESH_RELAY_PEERS: str = ""
|
||||
MESH_RELAY_PEERS: str = "http://cipher0.shadowbroker.info:8000"
|
||||
MESH_BOOTSTRAP_DISABLED: bool = False
|
||||
MESH_BOOTSTRAP_MANIFEST_PATH: str = "data/bootstrap_peers.json"
|
||||
MESH_BOOTSTRAP_SIGNER_PUBLIC_KEY: str = ""
|
||||
|
||||
Reference in New Issue
Block a user