1
0
Fork 0
mirror of https://github.com/YunoHost-Apps/acropolis_ynh.git synced 2024-09-03 18:06:22 +02:00
acropolis_ynh/conf/acropolis-web.service

20 lines
509 B
SYSTEMD
Raw Permalink Normal View History

2021-11-10 19:58:54 +01:00
[Unit]
Description=__APP__-web
After=network.target
[Service]
Type=simple
User=__APP__
2023-10-04 12:18:39 +02:00
WorkingDirectory=__INSTALL_DIR__
2021-11-10 19:58:54 +01:00
Environment="RAILS_ENV=production"
Environment="PORT=__PORT_WEB__"
2023-10-04 12:18:39 +02:00
Environment=UNICORN_LISTENER=__INSTALL_DIR__/tmp/sockets/unicorn.sock
2021-11-17 21:38:12 +01:00
ExecStart=__RBENV_ROOT__/versions/__APP__/bin/bundle exec unicorn --config config/unicorn.rb -E production
2021-11-10 19:58:54 +01:00
ExecReload=/bin/kill -SIGUSR1 $MAINPID
2021-11-17 14:57:18 +01:00
TimeoutSec=60
RestartSec=60
Restart=on-failure
2021-11-10 19:58:54 +01:00
StandardError=syslog
[Install]
WantedBy=multi-user.target