tobelisk.conf - obelisk - Electrum server using libbitcoin as its backend
HTML git clone https://git.parazyd.org/obelisk
DIR Log
DIR Files
DIR Refs
DIR README
DIR LICENSE
---
tobelisk.conf (881B)
---
1 # Configuration file for obelisk
2 [obelisk]
3 # 0.0.0.0 to bind to any IP, 127.0.0.1 to bind to localhost
4 host = 127.0.0.1
5 port = 50003
6
7 # Which chain should this instance of obelisk be using (mainnet/testnet)
8 chain = testnet
9
10 # Endpoints served by bs
11 #query = tcp://localhost:9091
12 #heart = tcp://localhost:9092
13 #block = tcp://localhost:9093
14 #trans = tcp://localhost:9094
15 query = tcp://testnet2.libbitcoin.net:29091
16 heart = tcp://testnet2.libbitcoin.net:29092
17 block = tcp://testnet2.libbitcoin.net:29093
18 trans = tcp://testnet2.libbitcoin.net:29094
19
20 # Space-separated whitelist of IP addresses
21 # Accepts CIDR notation, e.g. 192.168.0.0/16 or 2a01:4f8:1f1::/120
22 # Wildcard (*) means all are accepted (Generally requires host to be 0.0.0.0)
23 ip_whitelist = *
24
25 # Path to TLS certificate and key. Use openssl or similar tools to generate
26 certfile = certs/cert.pem
27 keyfile = certs/cert.key