2017-08-07 23:41:36 +00:00
[Unit]
Description = Pleroma social network
After = network.target postgresql.service
[Service]
User = pleroma
WorkingDirectory = /home/pleroma/pleroma
Environment = "HOME=/home/pleroma"
2018-11-12 22:01:06 +00:00
Environment = "MIX_ENV=prod"
2017-08-07 23:41:36 +00:00
ExecStart = /usr/local/bin/mix phx.server
ExecReload = /bin/kill $MAINPID
KillMode = process
Restart = on-failure
2018-10-24 22:37:31 +00:00
; Some security directives.
; Use private /tmp and /var/tmp folders inside a new file system namespace, which are discarded after the process stops.
PrivateTmp = true
2018-10-24 22:57:47 +00:00
; Mount /usr, /boot, and /etc as read-only for processes invoked by this service.
2018-10-24 22:37:31 +00:00
ProtectSystem = full
; Sets up a new /dev mount for the process and only adds API pseudo devices like /dev/null, /dev/zero or /dev/random but not physical devices. Disabled by default because it may not work on devices like the Raspberry Pi.
PrivateDevices = false
2018-10-24 22:57:47 +00:00
; Ensures that the service process and all its children can never gain new privileges through execve().
2018-10-24 22:37:31 +00:00
NoNewPrivileges = true
2018-12-28 20:09:48 +00:00
; Drops the sysadmin capability from the daemon.
CapabilityBoundingSet = ~CAP_SYS_ADMIN
2018-10-24 22:37:31 +00:00
2017-08-07 23:41:36 +00:00
[Install]
WantedBy = multi-user.target