mirror of
https://github.com/YunoHost-Apps/acropolis_ynh.git
synced 2024-09-03 18:06:22 +02:00
18 lines
375 B
SYSTEMD
18 lines
375 B
SYSTEMD
|
[Unit]
|
||
|
Description=__APP__-sidekiq
|
||
|
After=network.target
|
||
|
|
||
|
[Service]
|
||
|
Type=simple
|
||
|
User=__APP__
|
||
|
WorkingDirectory=__FINALPATH__
|
||
|
Environment="RAILS_ENV=production"
|
||
|
Environment="DB_POOL=25"
|
||
|
Environment="MALLOC_ARENA_MAX=2"
|
||
|
ExecStart=__RBENV_ROOT__/versions/__APP__/bin/bundle exec sidekiq -c 25
|
||
|
TimeoutSec=15
|
||
|
Restart=always
|
||
|
StandardError=syslog
|
||
|
|
||
|
[Install]
|
||
|
WantedBy=multi-user.target
|