1
0
Fork 0
mirror of https://github.com/YunoHost-Apps/archivebox_ynh.git synced 2024-09-03 18:15:54 +02:00
archivebox_ynh/conf/systemd.service

47 lines
1.6 KiB
SYSTEMD
Raw Normal View History

2021-08-13 15:42:21 +02:00
[Unit]
2021-08-13 21:43:07 +02:00
Description=Archivebox server
2021-08-13 15:42:21 +02:00
After=network.target
[Service]
Type=simple
User=__APP__
Group=__APP__
2023-06-23 10:01:09 +02:00
WorkingDirectory=__DATA_DIR__/
2022-09-22 02:55:19 +02:00
Environment="__YNH_NODE_LOAD_PATH__"
2023-06-23 10:01:09 +02:00
ExecStart=__INSTALL_DIR__/venv/bin/archivebox server 127.0.0.1:__PORT__
2021-08-13 15:42:21 +02:00
StandardOutput=append:/var/log/__APP__/__APP__.log
StandardError=inherit
# Sandboxing options to harden security
2021-08-13 21:43:07 +02:00
# Depending on specificities of your service/app, you may need to tweak these
2021-08-13 15:42:21 +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
2021-09-06 17:14:05 +02:00
#RestrictNamespaces=yes
2021-08-13 15:42:21 +02:00
RestrictRealtime=yes
DevicePolicy=closed
ProtectSystem=full
ProtectControlGroups=yes
ProtectKernelModules=yes
ProtectKernelTunables=yes
LockPersonality=yes
2021-09-06 17:14:05 +02:00
#SystemCallFilter=~@clock @debug @module @mount @obsolete @reboot @setuid @swap
2021-08-13 15:42:21 +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-08-13 21:43:07 +02:00
CapabilityBoundingSet=~CAP_SYS_ADMIN CAP_SYS_PTRACE CAP_SYSLOG
2021-08-13 15:42:21 +02:00
[Install]
WantedBy=multi-user.target