Could you please give an example of a node configuration for BGL?
By default, the node (when started without any arguments as BGLd) will sync to production mainnet, then listen to the localhost RPC without login or password, if you want to expose it somewhere, create a file
~/.BGL/BGL.conf
$ touch ~/.BGL/BGL.conf
# Expose the RPC/JSON API
server=1
rpcbind=10.0.1.5
rpcallowip=0.0.0.0/0
rpcport=8332
rpcuser=bgluser
rpcpassword=93jd987u54li
Operating System | Default BGL datadir | Typical path to configuration file |
Windows | %APPDATA%\BGL\ | C:\Users\username\AppData\Roaming\BGL\BGL.conf |
Linux | $HOME/.BGL/ | /home/username/.BGL/BGL.conf |
Mac OSX | $HOME/Library/Application Support/BGL/ | /Users/username/Library/Application Support/BGL/BGL.conf |
You can also use Bitcoin Core-based config tools, like e.g.:
https://jlopp.github.io/bitcoin-core-config-generator/ (mb a bit complex one)
Just the file name and location is different.