mirror of
https://gitea.blesmrt.net/mikaela/shell-things.git
synced 2024-11-22 11:19:22 +01:00
ipfs.service: add options I forgot before
This commit is contained in:
parent
3ecfc2473d
commit
6981481c77
@ -5,8 +5,9 @@ After=network.target
|
|||||||
[Service]
|
[Service]
|
||||||
ExecStart=/home/mikaela/go/bin/ipfs daemon --routing=dhtclient --enable-gc --enable-namesys-pubsub
|
ExecStart=/home/mikaela/go/bin/ipfs daemon --routing=dhtclient --enable-gc --enable-namesys-pubsub
|
||||||
# My attempts at explaining flags above + --mount for fuse
|
# My attempts at explaining flags above + --mount for fuse
|
||||||
# --mount - fuse for /ipfs and /ipns, see https://github.com/ipfs/go-ipfs/blob/master/docs/fuse.md as it requires some specific config, I am not
|
# --mount - fuse for /ipfs and /ipns, see
|
||||||
# setting it as default here.
|
# https://github.com/ipfs/go-ipfs/blob/master/docs/fuse.md as it requires
|
||||||
|
# some specific config, I am not setting it as default here.
|
||||||
# --routing=dhtclient - not serving requests to the network saving bandwidth
|
# --routing=dhtclient - not serving requests to the network saving bandwidth
|
||||||
# --enable-gc - automatic cleaning of unpinned files per rules in ipfs
|
# --enable-gc - automatic cleaning of unpinned files per rules in ipfs
|
||||||
# config, I think by default two hours or when the repo gets bigger than
|
# config, I think by default two hours or when the repo gets bigger than
|
||||||
@ -25,7 +26,12 @@ ExecStart=/home/mikaela/go/bin/ipfs daemon --routing=dhtclient --enable-gc --ena
|
|||||||
# connections
|
# connections
|
||||||
# ipfs config --json Swarm.EnableAutoRelay true - if impassable NAT is
|
# ipfs config --json Swarm.EnableAutoRelay true - if impassable NAT is
|
||||||
# detected, connect to the network through relays that have configured
|
# detected, connect to the network through relays that have configured
|
||||||
# themselves as open (EnableRelayHop?)
|
# themselves as open (EnableAutoNATService & EnableRelayHop?)
|
||||||
|
# ipfs config --json Experimental.QUIC true - QUIC support, remember to
|
||||||
|
# edit swarm addresses to include /ip4/0.0.0.0/udp/4001/quic
|
||||||
|
# /ip6/::/udp/4001/quic
|
||||||
|
# ipfs config --json Experimental.FilestoreEnabled true - for ipfs add
|
||||||
|
# --nocopy to not store the content twice on disc
|
||||||
#
|
#
|
||||||
# Extra: to disable IPv4 connections:
|
# Extra: to disable IPv4 connections:
|
||||||
# ipfs swarm filters add /ip4/0.0.0.0/ipcidr/0
|
# ipfs swarm filters add /ip4/0.0.0.0/ipcidr/0
|
||||||
|
Loading…
Reference in New Issue
Block a user