about summary refs log tree commit diff
path: root/dist/mastodon-streaming.service
diff options
context:
space:
mode:
authorEugen Rochko <eugen@zeonfederated.com>2018-09-24 16:46:05 +0200
committerGitHub <noreply@github.com>2018-09-24 16:46:05 +0200
commit6465972caf77cb7008e1d751778f53ed2e6f698e (patch)
treed31a29f5910fae69e8ecf09959bfbc59cdc71007 /dist/mastodon-streaming.service
parent9f6662fcc979d497b09fbd9b3ab06dd7538b92c9 (diff)
Add nginx and systemd templates (#8770)
So they can be copied during installation instead of looking
them up in the documentation

Make default sidekiq configuration use weighted queues

Remove deprecated docs directory
Diffstat (limited to 'dist/mastodon-streaming.service')
-rw-r--r--dist/mastodon-streaming.service17
1 files changed, 17 insertions, 0 deletions
diff --git a/dist/mastodon-streaming.service b/dist/mastodon-streaming.service
new file mode 100644
index 000000000..5d7c129df
--- /dev/null
+++ b/dist/mastodon-streaming.service
@@ -0,0 +1,17 @@
+[Unit]
+Description=mastodon-streaming
+After=network.target
+
+[Service]
+Type=simple
+User=mastodon
+WorkingDirectory=/home/mastodon/live
+Environment="NODE_ENV=production"
+Environment="PORT=4000"
+Environment="STREAMING_CLUSTER_NUM=1"
+ExecStart=/usr/bin/npm run start
+TimeoutSec=15
+Restart=always
+
+[Install]
+WantedBy=multi-user.target