Advertisement
Guest User

Untitled

a guest
Jun 3rd, 2018
118
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.64 KB | None | 0 0
  1. var bitcoindConf = {
  2. protocol: process.env.BITCOIND_PROTO || 'http',
  3. user: process.env.BITCOIND_USER || 'liteuser',
  4. pass: process.env.BITCOIND_PASS || 'litepass',
  5. host: process.env.BITCOIND_HOST || '127.0.0.1',
  6. port: process.env.BITCOIND_PORT || b_port,
  7. p2pPort: process.env.BITCOIND_P2P_PORT || p2p_port,
  8. p2pHost: process.env.BITCOIND_P2P_HOST || process.env.BITCOIND_HOST || '127.0.0.1',
  9. dataDir: dataDir,
  10. // DO NOT CHANGE THIS!
  11. disableAgent: true
  12. };
  13.  
  14. rpcuser=liteuser
  15. rpcpassword=litepass
  16. server=1
  17. txindex=1
  18.  
  19. # Allow connections outsite localhost?
  20.  
  21. rpcallowip=127.0.0.1
  22. rpcallowip=192.168.1.*
  23.  
  24. rpcport=8332
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement