* doc requirements
* more docs * changed btc_init to include more features and set txindex to 1 * masked rpm-ostree-countme timer
This commit is contained in:
parent
06dd99394c
commit
af6443a5eb
@ -26,6 +26,12 @@ cat <<EOF > $HOME/.bitcoin/bitcoin.conf
|
||||
# MAINNET
|
||||
# TESTNET
|
||||
# REGTEST
|
||||
# MEMPOOLFULLRBF
|
||||
# MAXMEMPOOL
|
||||
# MEMPOOLEXPIRY
|
||||
# PERSISTMEMPOOL
|
||||
# MAXORPHANTX
|
||||
# BANTIME
|
||||
# SERVER
|
||||
# LISTEN
|
||||
# LISTENONION
|
||||
@ -34,6 +40,7 @@ cat <<EOF > $HOME/.bitcoin/bitcoin.conf
|
||||
# PRUNE
|
||||
# DISABLEWALLET
|
||||
# PRINTCONSOLE
|
||||
# WHITELIST
|
||||
# RPCUSER
|
||||
# RPCPASSWORD
|
||||
# RPCCONNECT
|
||||
@ -49,16 +56,30 @@ cat <<EOF > $HOME/.bitcoin/bitcoin.conf
|
||||
# REINDEXCHAINSTATE
|
||||
|
||||
# network
|
||||
# Choose what network to connect to (mutually exclusive choice)
|
||||
mainnet=${MAINNET:-1}
|
||||
testnet=${TESTNET:-0}
|
||||
regtest=${REGTEST:-0}
|
||||
# Allow all transactions to be replaced by RBF by default
|
||||
mempoolfullrbf=${MEMPOOLFULLRBF:-1}
|
||||
# Max size in MB for mempool memory reserve
|
||||
maxmempool=${MAXMEMPOOL:-256}
|
||||
# Max time in hours before old mempool items expire
|
||||
mempoolexpiry=${MEMPOOLEXPIRY:-336}
|
||||
blockfilterindex=${BLOCKFILTERINDEX:-1}
|
||||
# Save mempool to disk on shutdown
|
||||
persistmempool=${PERSISTMEMPOOL:-1}
|
||||
# Max num of orphan tx to be kept
|
||||
maxorphantx=${MAXORPHANTX:-50}
|
||||
# Time in mins to ban bad peers
|
||||
bantime=${BANTIME:-86400}
|
||||
|
||||
# server
|
||||
server=${SERVER:-1}
|
||||
listen=${LISTEN:-1}
|
||||
listenonion=${LISTENONION:-0}
|
||||
daemon=${DAEMON:-0}
|
||||
txindex=${TXINDEX:-0}
|
||||
txindex=${TXINDEX:-1}
|
||||
prune=${PRUNE:-0}
|
||||
disablewallet=${DISABLEWALLET:-1}
|
||||
printtoconsole=${PRINTTOCONSOLE:-1}
|
||||
@ -70,10 +91,13 @@ rpccookiefile=.cookie
|
||||
#rpcconnect=${RPCCONNECT:-127.0.0.1}
|
||||
#rpcport=${RPCPORT:-8332}
|
||||
#rpcauth=${RPCAUTH:-xxx}
|
||||
whitelist=${WHITELIST:-127.0.0.1}
|
||||
|
||||
# performance
|
||||
#Max cache size of db in mb
|
||||
dbcache=${DBCACHE:-2000}
|
||||
maxconnections=${MAXCONNECTIONS:-40}
|
||||
|
||||
maxconnections=${MAXCONNECTIONS:-75}
|
||||
maxuploadtarget=${MAXUPLOADTARGET:-5000}
|
||||
|
||||
# tor
|
||||
|
||||
@ -1 +1,24 @@
|
||||
site_name: My Docs
|
||||
site_name: n0xb0x
|
||||
site_url: https://n0xb0x.org
|
||||
nav:
|
||||
- Home: index.md
|
||||
- Getting Started: install.md
|
||||
|
||||
|
||||
markdown_extensions:
|
||||
- pymdownx.blocks.admonition
|
||||
- pymdownx.blocks.definition
|
||||
- pymdownx.blocks.details
|
||||
- pymdownx.blocks.html
|
||||
- pymdownx.blocks.tab
|
||||
- pymdownx.caret
|
||||
#- pymdownx.emoji
|
||||
#- pymdownx.extra
|
||||
- pymdownx.highlight
|
||||
- pymdownx.inlinehilite
|
||||
- pymdownx.keys
|
||||
#- pymdownx.magiclink
|
||||
#- pymdownx.mark
|
||||
#- pymdownx.smartsymbols
|
||||
#- pymdownx.tabbed
|
||||
#- pymdownx.tilde
|
||||
|
||||
@ -1,2 +1,3 @@
|
||||
mkdocs==1.5.3
|
||||
pymdown-extensions==10.7
|
||||
|
||||
|
||||
@ -80,3 +80,12 @@
|
||||
state: started
|
||||
enabled: yes
|
||||
when: (zerotier_network is defined) and (zerotier_network|length>0)
|
||||
|
||||
- name: Mask Fedora countme timer
|
||||
become: yes
|
||||
become_method: sudo
|
||||
ansible.builtin.systemd_service:
|
||||
name: rpm-ostree-countme.timer
|
||||
state: stopped
|
||||
masked: true
|
||||
|
||||
|
||||
@ -35,6 +35,7 @@
|
||||
- telnet
|
||||
- cockpit
|
||||
- cockpit-networkmanager
|
||||
- cockpit-storage
|
||||
- cockpit-ostree
|
||||
- cockpit-podman
|
||||
- zerotier-one
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user