48 lines
1.1 KiB
SYSTEMD
48 lines
1.1 KiB
SYSTEMD
|
[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=/opt/hedgedoc/node_modules/yarn/bin/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
|
||
|
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
|