forked from unitoo/configurations
ipfs: hardened ipfs config
This commit is contained in:
parent
c08567ba6e
commit
4234e4b505
1 changed files with 42 additions and 13 deletions
|
@ -1,26 +1,55 @@
|
||||||
[Unit]
|
[Unit]
|
||||||
Description=IPFS Daemon
|
Description=IPFS Daemon
|
||||||
|
Documentation=https://docs.ipfs.io/
|
||||||
After=network.target
|
After=network.target
|
||||||
|
|
||||||
[Service]
|
[Service]
|
||||||
#Runtime
|
# hardening
|
||||||
Environment="IPFS_PATH=/mnt/ipfs"
|
ReadWritePaths=/home/ipfs /mnt/ipfs
|
||||||
Environment=IPFS_LOGGING="error"
|
NoNewPrivileges=true
|
||||||
ExecStart=/home/ipfs/.local/bin/ipfs daemon --enable-gc --migrate
|
ProtectSystem=strict
|
||||||
User=ipfs
|
ProtectKernelTunables=true
|
||||||
Restart=on-failure
|
ProtectKernelModules=true
|
||||||
RestartSec=10s
|
ProtectKernelLogs=true
|
||||||
KillSignal=SIGINT
|
PrivateDevices=true
|
||||||
|
DevicePolicy=closed
|
||||||
|
ProtectControlGroups=true
|
||||||
|
RestrictAddressFamilies=AF_UNIX AF_INET AF_INET6 AF_NETLINK
|
||||||
|
ProtectHostname=true
|
||||||
|
PrivateTmp=true
|
||||||
|
ProtectClock=true
|
||||||
|
LockPersonality=true
|
||||||
|
RestrictNamespaces=true
|
||||||
|
RestrictRealtime=true
|
||||||
|
MemoryDenyWriteExecute=true
|
||||||
|
SystemCallArchitectures=native
|
||||||
|
SystemCallFilter=@system-service
|
||||||
|
SystemCallFilter=~@privileged
|
||||||
|
#ProtectHome=true
|
||||||
|
RemoveIPC=true
|
||||||
|
RestrictSUIDSGID=true
|
||||||
|
CapabilityBoundingSet=CAP_NET_BIND_SERVICE
|
||||||
|
|
||||||
#Accounting
|
LimitNOFILE=8192
|
||||||
LimitNOFILE=10240
|
|
||||||
#LimitNice=10
|
#LimitNice=10
|
||||||
MemoryAccounting=true
|
MemoryAccounting=true
|
||||||
MemoryHigh=512M
|
MemoryHigh=768M
|
||||||
MemoryMax=768M
|
MemoryMax=1024M
|
||||||
MemorySwapMax=512M
|
MemorySwapMax=0
|
||||||
CPUAccounting=true
|
CPUAccounting=true
|
||||||
CPUQuota=40%
|
CPUQuota=40%
|
||||||
|
TimeoutStartSec=infinity
|
||||||
|
|
||||||
|
Type=notify
|
||||||
|
Environment="IPFS_PATH=/mnt/ipfs"
|
||||||
|
Environment=IPFS_LOGGING="error"
|
||||||
|
Environment=IPFS_FD_MAX=8192
|
||||||
|
ExecStart=/home/ipfs/.local/bin/ipfs daemon --init --enable-gc --migrate
|
||||||
|
User=ipfs
|
||||||
|
Group=ipfs
|
||||||
|
StateDirectory=ipfs
|
||||||
|
Restart=on-failure
|
||||||
|
KillSignal=SIGINT
|
||||||
|
|
||||||
[Install]
|
[Install]
|
||||||
WantedBy=multi-user.target
|
WantedBy=multi-user.target
|
||||||
|
|
Loading…
Reference in a new issue