-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathbitchan.yaml.example
80 lines (67 loc) · 2.04 KB
/
bitchan.yaml.example
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
# Default bitchan config.
# See <https://en.wikipedia.org/wiki/YAML> for a syntax reference.
###
# Networking settings.
###
# Connect to the specified node and only the specified node. Useful if
# you trust a node on your local network and want to sync to it quickly.
# Disallows incoming connections. Disables the built-in timing attack
# mitigation mechanism. (This is the same as PyBitmessage setting.)
# Has format ["host", port]. Connects to the trusted peer at localhost
# by default.
#tcp-trusted-peer: ["localhost", 8444]
# TCP listening settings.
#tcp-host: "::"
#tcp-port: 8444
# Bootstrap settings. Don't modify it without necessity.
#tcp-seeds:
# - ["23.239.9.147", 8444]
# - ["98.218.125.214", 8444]
# - ["192.121.170.162", 8444]
# - ["108.61.72.12", 28444]
# - ["158.222.211.81", 8080]
# - ["79.163.240.110", 8446]
# - ["178.62.154.250", 8444]
# - ["178.62.155.6", 8444]
# - ["178.62.155.8", 8444]
# - ["68.42.42.120", 8444]
#tcp-dns-seeds:
# - ["bootstrap8444.bitmessage.org", 8444]
# - ["bootstrap8080.bitmessage.org", 8080]
# WebSocket listening settings.
# WebSocket server used to proxy web-client messages into Bitmessage
# network since browsers don't have TCP support.
#ws-host: "::"
#ws-port: 18444
###
# Storage settings.
###
# Storage type (sqlite or pg).
#storage-backend: sqlite
# SQLite storage settings.
#sqlite-db-path: ~/.bitchan/bitchan.db
# PostgreSQL storage settings.
#pg-host: 127.0.0.1
#pg-user: bitchan
#pg-password: secret
#pg-database: bitchan
###
# Logging settings.
###
# Instantiate winston transports with specified settings.
# Currently only file and console transports are available.
# See <https://github.com/winstonjs/winston#working-with-transports> for
# a list of transport settings.
# NOTE: To disable one of default transports pass empty value to it,
# don't simply remove it.
#logging:
# file:
# - {filename: ~/.bitchan/bitchan.log, level: warn, json: false}
# console:
# - {level: info, timestamp: true, colorize: true}
###
# Web UI settings.
###
#webui: true
#webui-host: "localhost"
#webui-port: 28444