17 lines
389 B
Text
17 lines
389 B
Text
|
[Unit]
|
||
|
Description=mastodon-web
|
||
|
After=network.target
|
||
|
|
||
|
[Service]
|
||
|
Type=simple
|
||
|
User=mastodon
|
||
|
WorkingDirectory={{ mastodon_home }}/{{ mastodon_path }}
|
||
|
Environment="RAILS_ENV=production"
|
||
|
Environment="PORT=3000"
|
||
|
ExecStart={{ mastodon_home }}/.rbenv/shims/bundle exec puma -C config/puma.rb
|
||
|
ExecReload=/bin/kill -SIGUSR1 $MAINPID
|
||
|
TimeoutSec=15
|
||
|
Restart=always
|
||
|
|
||
|
[Install]
|
||
|
WantedBy=multi-user.target
|