51 lines
1.2 KiB
Text
51 lines
1.2 KiB
Text
|
[Unit]
|
||
|
Description=mastodon-streaming
|
||
|
After=network.target
|
||
|
|
||
|
[Service]
|
||
|
Type=simple
|
||
|
User={{ mastodon_user }}
|
||
|
WorkingDirectory={{ mastodon_home }}/{{ mastodon_path }}
|
||
|
Environment="NODE_ENV=production"
|
||
|
Environment="PORT=4000"
|
||
|
Environment="STREAMING_CLUSTER_NUM=1"
|
||
|
ExecStart=/usr/bin/node ./streaming
|
||
|
TimeoutSec=15
|
||
|
Restart=always
|
||
|
# Proc filesystem
|
||
|
ProcSubset=pid
|
||
|
ProtectProc=invisible
|
||
|
# Capabilities
|
||
|
CapabilityBoundingSet=
|
||
|
# Security
|
||
|
NoNewPrivileges=true
|
||
|
# Sandboxing
|
||
|
ProtectSystem=strict
|
||
|
PrivateTmp=true
|
||
|
PrivateDevices=true
|
||
|
PrivateUsers=true
|
||
|
ProtectHostname=true
|
||
|
ProtectKernelLogs=true
|
||
|
ProtectKernelModules=true
|
||
|
ProtectKernelTunables=true
|
||
|
ProtectControlGroups=true
|
||
|
RestrictAddressFamilies=AF_INET
|
||
|
RestrictAddressFamilies=AF_INET6
|
||
|
RestrictAddressFamilies=AF_NETLINK
|
||
|
RestrictAddressFamilies=AF_UNIX
|
||
|
RestrictNamespaces=true
|
||
|
LockPersonality=true
|
||
|
RestrictRealtime=true
|
||
|
RestrictSUIDSGID=true
|
||
|
RemoveIPC=true
|
||
|
PrivateMounts=true
|
||
|
ProtectClock=true
|
||
|
# System Call Filtering
|
||
|
SystemCallArchitectures=native
|
||
|
SystemCallFilter=~@cpu-emulation @debug @keyring @ipc @memlock @mount @obsolete @privileged @resources @setuid
|
||
|
SystemCallFilter=pipe
|
||
|
SystemCallFilter=pipe2
|
||
|
ReadWritePaths={{ mastodon_home }}/{{ mastodon_path }}
|
||
|
|
||
|
[Install]
|
||
|
WantedBy=multi-user.target
|