Advertisement
Guest User

Untitled

a guest
Sep 18th, 2022
40
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.44 KB | None | 0 0
  1. # /etc/monero/monerod.conf
  2.  
  3. # Data directory (blockchain db and indices)
  4. data-dir=/home/theo/.bitmonero
  5.  
  6. # Log file
  7. log-file=/var/log/monero/monerod.log
  8. max-log-file-size=0 # Prevent monerod from managing the log files; we want logrotate to take care of that
  9.  
  10. # P2P full node
  11. p2p-bind-ip=0.0.0.0 # Bind to all interfaces (the default)
  12. p2p-bind-port=18080 # Bind to default port
  13.  
  14. # RPC open node
  15. rpc-bind-ip=0.0.0.0 # Bind to all interfaces
  16. rpc-bind-port=18081 # Bind on default port
  17. confirm-external-bind=1 # Open node (confirm)
  18. restricted-rpc=4 # Prevent unsafe RPC calls
  19. no-igd=1 # Disable UPnP port mapping
  20. zmq-pub=tcp://127.0.0.1:18083
  21.  
  22. # Slow but reliable db writes
  23. db-sync-mode=safe
  24.  
  25. # Emergency checkpoints set by MoneroPulse operators will be enforced to workaround potential consensus bugs
  26. # Check https://monerodocs.org/infrastructure/monero-pulse/ for explanation and trade-offs
  27. enforce-dns-checkpointing=1
  28.  
  29. out-peers=64 # This will enable much faster sync and tx awareness; the default 8 is suboptimal nowadays
  30. in-peers=1024 # The default is unlimited; we prefer to put a cap on this
  31.  
  32. limit-rate-up=1048576 # 1048576 kB/s == 1GB/s; a raise from default 2048 kB/s; contribute more to p2p network
  33. limit-rate-down=1048576 # 1048576 kB/s == 1GB/s; a raise from default 8192 kB/s; allow for faster initial sync
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement