forked from kannix/monero-full-node
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmonerod.conf
More file actions
39 lines (29 loc) · 1.62 KB
/
monerod.conf
File metadata and controls
39 lines (29 loc) · 1.62 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
# Data directory (blockchain db and indices)
data-dir=/home/monero/.bitmonero # Remember to create the monero user first
# Log file
log-file=/home/monero/.bitmonero/bitmonero.log
#max-log-file-size=0 # Prevent monerod from managing the log files; we want logrotate to take care of that
log-level=0
# P2P full node
p2p-bind-ip=0.0.0.0 # Bind to all interfaces (the default)
p2p-bind-port=18080 # Bind to default port
# RPC open node
rpc-bind-ip=127.0.0.1 # Bind to all interfaces
rpc-bind-port=18081 # Bind on default port
#restricted-rpc=1 # Prevent unsafe RPC calls
rpc-restricted-bind-ip=0.0.0.0 # Bind to all interfaces for restricted RPC
rpc-restricted-bind-port=18089 # Bind on default port
confirm-external-bind=1 # Open node (confirm)
zmq-rpc-bind-ip=127.0.0.1
no-igd=1 # Disable UPnP port mapping
# Slow but reliable db writes
db-sync-mode=safe
# Emergency checkpoints set by MoneroPulse operators will be enforced to workaround potential consensus bugs
# Check https://monerodocs.org/infrastructure/monero-pulse/ for explanation and trade-offs
enforce-dns-checkpointing=1
hide-my-port=1
#enable-dns-blocklist=1
out-peers=64 # This will enable much faster sync and tx awareness; the default 8 is suboptimal nowadays
in-peers=1024 # The default is unlimited; we prefer to put a cap on this
limit-rate-up=1048576 # 1048576 kB/s == 1GB/s; a raise from default 2048 kB/s; contribute more to p2p network
limit-rate-down=1048576 # 1048576 kB/s == 1GB/s; a raise from default 8192 kB/s; allow for faster initial sync