URI: 
       tAdd obelisk.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
       ---
   DIR commit 31884907fcd4a75003e975d5d530e5790c65abdd
   DIR parent 6a0dc296a69d6e250c81323fa1f4837a9136f6f7
  HTML Author: parazyd <parazyd@dyne.org>
       Date:   Wed,  7 Apr 2021 14:10:20 +0200
       
       Add obelisk.conf.
       
       Diffstat:
         A res/obelisk.conf                    |      27 +++++++++++++++++++++++++++
       
       1 file changed, 27 insertions(+), 0 deletions(-)
       ---
   DIR diff --git a/res/obelisk.conf b/res/obelisk.conf
       t@@ -0,0 +1,27 @@
       +# Configuration file for obelisk
       +[obelisk]
       +# 0.0.0.0 to bind to any IP, 127.0.0.1 to bind to localhost
       +host = 127.0.0.1
       +port = 50003
       +
       +# Which chain should this instance of obelisk be using (mainnet/testnet)
       +chain = testnet
       +
       +# Endpoints served by bs
       +#query = tcp://localhost:9091
       +#heart = tcp://localhost:9092
       +#block = tcp://localhost:9093
       +#trans = tcp://localhost:9094
       +query = tcp://testnet2.libbitcoin.net:29091
       +heart = tcp://testnet2.libbitcoin.net:29092
       +block = tcp://testnet2.libbitcoin.net:29093
       +trans = tcp://testnet2.libbitcoin.net:29094
       +
       +# Space-separated whitelist of IP addresses
       +# Accepts CIDR notation, e.g. 192.168.0.0/16 or 2a01:4f8:1f1::/120
       +# Wildcard (*) means all are accepted (Generally requires host to be 0.0.0.0)
       +ip_whitelist = *
       +
       +# Path to TLS certificate and key. Use openssl or similar tools to generate
       +certfile = certs/cert.pem
       +keyfile  = certs/cert.key