matrix-puppet-discord_ynh/conf/systemd.service

50 lines
1.7 KiB
SYSTEMD
Raw Normal View History

2021-09-11 16:08:56 +02:00
[Unit]
2021-09-12 14:49:16 +02:00
Description=Discord-Matrix daemon
After=network.target matrix-synapse.target
2021-09-11 16:08:56 +02:00
[Service]
Type=simple
2021-09-12 14:49:16 +02:00
Environment=NODE_ENV=production
Environment="__YNH_NODE_LOAD_PATH__"
2021-09-11 16:08:56 +02:00
User=__APP__
Group=__APP__
WorkingDirectory=__FINALPATH__/
ExecStart=__FINALPATH__/run.sh
2021-09-12 14:49:16 +02:00
StandardOutput=syslog
StandardError=syslog
2021-09-11 16:08:56 +02:00
# Sandboxing options to harden security
2021-09-12 14:49:16 +02:00
# Depending on specificities of your service/app, you may need to tweak these
2021-09-11 16:08:56 +02:00
# .. but this should be a good baseline
# Details for these options: https://www.freedesktop.org/software/systemd/man/systemd.exec.html
NoNewPrivileges=yes
PrivateTmp=yes
PrivateDevices=yes
RestrictAddressFamilies=AF_UNIX AF_INET AF_INET6 AF_NETLINK
2021-09-11 16:08:56 +02:00
RestrictNamespaces=yes
RestrictRealtime=yes
DevicePolicy=closed
ProtectSystem=full
ProtectControlGroups=yes
ProtectKernelModules=yes
ProtectKernelTunables=yes
LockPersonality=yes
SystemCallFilter=~@clock @debug @module @mount @obsolete @reboot @setuid @swap
2021-09-12 14:49:16 +02:00
# TODO Check whether we can disable some capabilities
2021-09-11 16:08:56 +02:00
# Denying access to capabilities that should not be relevant for webapps
# Doc: https://man7.org/linux/man-pages/man7/capabilities.7.html
CapabilityBoundingSet=~CAP_RAWIO CAP_MKNOD
CapabilityBoundingSet=~CAP_AUDIT_CONTROL CAP_AUDIT_READ CAP_AUDIT_WRITE
CapabilityBoundingSet=~CAP_SYS_BOOT CAP_SYS_TIME CAP_SYS_MODULE CAP_SYS_PACCT
CapabilityBoundingSet=~CAP_LEASE CAP_LINUX_IMMUTABLE CAP_IPC_LOCK
CapabilityBoundingSet=~CAP_BLOCK_SUSPEND CAP_WAKE_ALARM
CapabilityBoundingSet=~CAP_SYS_TTY_CONFIG
CapabilityBoundingSet=~CAP_MAC_ADMIN CAP_MAC_OVERRIDE
CapabilityBoundingSet=~CAP_NET_ADMIN CAP_NET_BROADCAST CAP_NET_RAW
2021-09-12 14:49:16 +02:00
CapabilityBoundingSet=~CAP_SYS_ADMIN CAP_SYS_PTRACE CAP_SYSLOG
2021-09-11 16:08:56 +02:00
[Install]
WantedBy=multi-user.target