20 lines
420 B
Plaintext
20 lines
420 B
Plaintext
[Unit]
|
|
Description=mastodon-web
|
|
Requires=redis-server.service
|
|
After=redis-server.service
|
|
Requires=postgresql@9.4-main.service
|
|
After=postgresql@9.4-main.service
|
|
|
|
[Service]
|
|
Type=simple
|
|
User=<%= @user %>
|
|
WorkingDirectory=<%= @app_dir %>
|
|
Environment="RAILS_ENV=production"
|
|
Environment="PORT=3000"
|
|
ExecStart=/usr/local/bin/bundle exec puma -C config/puma.rb
|
|
TimeoutSec=15
|
|
Restart=always
|
|
|
|
[Install]
|
|
WantedBy=multi-user.target
|