git ssb

2+

cel / scuttlebot.io



Tree: 2b3708ff390cc334653a3a9ff0f511f866423af7

Files: 2b3708ff390cc334653a3a9ff0f511f866423af7 / tmpl / docs / config / configure-scuttlebot.md

1729 bytesRaw

Configure Scuttlebot

Scuttlebot keeps all data and configuration in the ~/.ssb directory.

Configuration is stored in ~/.ssb/config, which is a JSON file:

{
  "host": "",
  "port": 8008,
  "timeout": 30000,
  "pub": true,
  "local": true,
  "friends": {
    "dunbar": 150,
    "hops": 3
  },
  "gossip": {
    "connections": 2
  },
  "master": [],
  "logging": {
    "level": "notice"
  }
}

You can also specify config flags in the ssb-server start call. For example:

ssb-server start --port 1234 --timeout 500

The options:

Built with git-ssb-web