1
0
Fork 0
mirror of https://github.com/YunoHost-Apps/miniflux_ynh.git synced 2024-09-03 19:45:58 +02:00
miniflux_ynh/conf/systemd.service

27 lines
621 B
SYSTEMD
Raw Normal View History

2021-05-21 14:13:08 +02:00
[Unit]
2021-05-22 08:55:19 +02:00
Description=Miniflux Feed Reader
2021-05-21 14:13:08 +02:00
Documentation=https://miniflux.app/docs/#database-connection-parameters
2021-05-22 08:55:19 +02:00
After=network.target postgresql.service
2021-05-21 14:13:08 +02:00
[Service]
2021-05-22 08:55:19 +02:00
Type=notify
2021-05-21 14:13:08 +02:00
User=__APP__
2021-05-22 08:55:19 +02:00
ExecStart=__FINALPATH__/miniflux -c __FINALPATH__/__APP__.conf
2021-05-21 14:13:08 +02:00
EnvironmentFile=__FINALPATH__/__APP__.conf
NonBlocking=true
2021-05-22 08:55:19 +02:00
Restart=always
NoNewPrivileges=true
PrivateDevices=true
ProtectControlGroups=true
ProtectHome=true
ProtectKernelModules=true
ProtectKernelTunables=true
ProtectSystem=strict
RestrictRealtime=true
ReadWritePaths=/run
AmbientCapabilities=CAP_NET_BIND_SERVICE
PrivateTmp=true
2021-05-21 14:13:08 +02:00
[Install]
WantedBy=multi-user.target