mirror of
https://github.com/YunoHost-Apps/navidrome_ynh.git
synced 2024-09-03 19:46:30 +02:00
44 lines
No EOL
1.3 KiB
Desktop File
44 lines
No EOL
1.3 KiB
Desktop File
[Unit]
|
|
Description=Navidrome Music Server and Streamer compatible with Subsonic/Airsonic
|
|
After=remote-fs.target network.target
|
|
AssertPathExists=__CONFIG_PATH__
|
|
|
|
[Install]
|
|
WantedBy=multi-user.target
|
|
|
|
[Service]
|
|
User=__APP__
|
|
Group=__APP__
|
|
Type=simple
|
|
ExecStart=__FINAL_PATH__/__APP__ --configfile "__CONFIG_PATH__/navidrome.toml"
|
|
WorkingDirectory=__CONFIG_PATH__
|
|
TimeoutStopSec=20
|
|
KillMode=process
|
|
Restart=on-failure
|
|
|
|
# See https://www.freedesktop.org/software/systemd/man/systemd.exec.html
|
|
DevicePolicy=closed
|
|
NoNewPrivileges=yes
|
|
PrivateTmp=yes
|
|
PrivateUsers=yes
|
|
ProtectControlGroups=yes
|
|
ProtectKernelModules=yes
|
|
ProtectKernelTunables=yes
|
|
RestrictAddressFamilies=AF_UNIX AF_INET AF_INET6
|
|
RestrictNamespaces=yes
|
|
RestrictRealtime=yes
|
|
SystemCallFilter=~@clock @debug @module @mount @obsolete @privileged @reboot @setuid @swap
|
|
ReadWritePaths=__CONFIG_PATH__
|
|
|
|
# You can uncomment the following line if you're not using the jukebox This
|
|
# will prevent navidrome from accessing any real (physical) devices
|
|
#PrivateDevices=yes
|
|
|
|
# You can change the following line to `strict` instead of `full` if you don't
|
|
# want navidrome to be able to write anything on your filesystem outside of
|
|
# /var/lib/navidrome.
|
|
ProtectSystem=full
|
|
|
|
# You can comment the following line if you don't have any media in /home/*.
|
|
# This will prevent navidrome from ever reading/writing anything there.
|
|
#ProtectHome=true |