summaryrefslogtreecommitdiffstats
path: root/roles/pad/templates/etherpad.service
diff options
context:
space:
mode:
Diffstat (limited to 'roles/pad/templates/etherpad.service')
-rw-r--r--roles/pad/templates/etherpad.service15
1 files changed, 15 insertions, 0 deletions
diff --git a/roles/pad/templates/etherpad.service b/roles/pad/templates/etherpad.service
new file mode 100644
index 0000000..f8e947d
--- /dev/null
+++ b/roles/pad/templates/etherpad.service
@@ -0,0 +1,15 @@
+[Unit]
+Description=Etherpad
+After=syslog.target network.target
+
+[Service]
+Type=simple
+User={{ etherpad_user }}
+Group={{ etherpad_group }}
+WorkingDirectory={{ etherpad_path }}
+ExecStart=node {{ etherpad_path }}/node_modules/ep_etherpad-lite/node/server.js
+Environment=NODE_ENV=production
+Restart=always
+
+[Install]
+WantedBy=multi-user.target