19 lines
378 B
SYSTEMD
19 lines
378 B
SYSTEMD
|
|
[Unit]
|
||
|
|
Description=Kluk Server
|
||
|
|
After=network.target
|
||
|
|
|
||
|
|
[Service]
|
||
|
|
Type=simple
|
||
|
|
User=mood
|
||
|
|
WorkingDirectory=/opt/mood/app.kluk.fr
|
||
|
|
ExecStart=/opt/mood/.rbenv/shims/foreman start
|
||
|
|
Environment="RACK_ENV=production"
|
||
|
|
Environment="PATH=/opt/mood/.rbenv/bin:/usr/local/bin:/usr/bin:/usr/local/sbin:/usr/sbin"
|
||
|
|
TimeoutSec=30
|
||
|
|
RestartSec=15s
|
||
|
|
Restart=always
|
||
|
|
|
||
|
|
[Install]
|
||
|
|
WantedBy=multi-user.target
|
||
|
|
|