2018-09-24 16:46:05 +02:00
|
|
|
[Unit]
|
|
|
|
Description=mastodon-web
|
|
|
|
After=network.target
|
|
|
|
|
|
|
|
[Service]
|
|
|
|
Type=simple
|
|
|
|
User=mastodon
|
|
|
|
WorkingDirectory=/home/mastodon/live
|
|
|
|
Environment="RAILS_ENV=production"
|
|
|
|
Environment="PORT=3000"
|
2021-07-05 19:16:35 +02:00
|
|
|
Environment="LD_PRELOAD=libjemalloc.so"
|
2018-09-24 16:46:05 +02:00
|
|
|
ExecStart=/home/mastodon/.rbenv/shims/bundle exec puma -C config/puma.rb
|
|
|
|
ExecReload=/bin/kill -SIGUSR1 $MAINPID
|
|
|
|
TimeoutSec=15
|
|
|
|
Restart=always
|
2021-10-25 16:31:20 +02:00
|
|
|
# Proc filesystem
|
|
|
|
ProcSubset=pid
|
|
|
|
ProtectProc=invisible
|
2021-03-24 10:46:13 +01:00
|
|
|
# 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
|
2021-10-25 16:31:20 +02:00
|
|
|
RemoveIPC=true
|
2021-03-24 10:46:13 +01:00
|
|
|
PrivateMounts=true
|
|
|
|
ProtectClock=true
|
|
|
|
# System Call Filtering
|
|
|
|
SystemCallArchitectures=native
|
2021-10-25 16:31:20 +02:00
|
|
|
SystemCallFilter=~@cpu-emulation @debug @keyring @ipc @mount @obsolete @privileged @setuid
|
|
|
|
SystemCallFilter=@chown
|
|
|
|
SystemCallFilter=pipe
|
|
|
|
SystemCallFilter=pipe2
|
2021-12-22 04:34:12 +01:00
|
|
|
ReadWritePaths=/home/mastodon/live
|
2018-09-24 16:46:05 +02:00
|
|
|
|
|
|
|
[Install]
|
|
|
|
WantedBy=multi-user.target
|