51 lines
1.2 KiB
Desktop File
51 lines
1.2 KiB
Desktop File
[Unit]
|
|
Description=HedgeDoc - The best platform to write and share markdown.
|
|
Documentation=https://docs.hedgedoc.org/
|
|
After=network.target
|
|
# Uncomment if you use MariaDB/MySQL
|
|
# After=mysql.service
|
|
# Uncomment if you use PostgreSQL
|
|
After=postgresql.service
|
|
|
|
[Service]
|
|
Type=exec
|
|
Environment=NODE_ENV=production
|
|
Restart=always
|
|
RestartSec=2s
|
|
ExecStart=yarn start --production
|
|
CapabilityBoundingSet=
|
|
NoNewPrivileges=true
|
|
PrivateDevices=true
|
|
RemoveIPC=true
|
|
LockPersonality=true
|
|
ProtectControlGroups=true
|
|
ProtectKernelTunables=true
|
|
ProtectKernelModules=true
|
|
ProtectKernelLogs=true
|
|
ProtectClock=true
|
|
ProtectHostname=true
|
|
ProtectProc=noaccess
|
|
RestrictRealtime=true
|
|
RestrictSUIDSGID=true
|
|
RestrictNamespaces=true
|
|
RestrictAddressFamilies=AF_UNIX AF_INET AF_INET6
|
|
ProtectSystem=strict
|
|
ProtectHome=true
|
|
PrivateTmp=true
|
|
SystemCallArchitectures=native
|
|
# FIXME
|
|
# causes problems on bookworm
|
|
# see https://github.com/hedgedoc/hedgedoc/issues/4686
|
|
# cmmented out for now ...
|
|
#SystemCallFilter=@system-service
|
|
|
|
# You may have to adjust these settings
|
|
User=hedgedoc
|
|
Group=hedgedoc
|
|
WorkingDirectory=/opt/hedgedoc
|
|
|
|
# Example: local storage for uploads and SQLite
|
|
ReadWritePaths=/var/opt/hedgedoc
|
|
|
|
[Install]
|
|
WantedBy=multi-user.target
|