mirror of
https://github.com/hak8or/proxmox_scripts.git
synced 2025-01-15 11:57:57 +00:00
14 lines
251 B
SYSTEMD
14 lines
251 B
SYSTEMD
|
[Unit]
|
||
|
Description=Example Ruby website
|
||
|
Requires=network.target
|
||
|
|
||
|
[Service]
|
||
|
Type=simple
|
||
|
User=website
|
||
|
Group=website
|
||
|
WorkingDirectory=/var/www
|
||
|
ExecStart=/usr/bin/bash -lc 'bundle exec rackup -s puma -p 9463 -o [::]'
|
||
|
|
||
|
[Install]
|
||
|
WantedBy=multi-user.target
|