mirror of
https://github.com/overleaf/overleaf.git
synced 2024-11-21 20:47:08 -05:00
28 lines
No EOL
808 B
Text
28 lines
No EOL
808 B
Text
description "sharelatex-web"
|
|
author "ShareLaTeX <team@sharelatex.com>"
|
|
|
|
start on (local-filesystems and net-device-up IFACE!=lo)
|
|
stop on shutdown
|
|
|
|
respawn
|
|
|
|
limit nofile 8192 8192
|
|
|
|
pre-start script
|
|
mkdir -p /var/log/sharelatex
|
|
end script
|
|
|
|
script
|
|
SERVICE=web
|
|
USER=sharelatex
|
|
GROUP=sharelatex
|
|
# You may need to replace this with an absolute
|
|
# path to Node.js if it's not in your system PATH.
|
|
NODE=node
|
|
SHARELATEX_CONFIG=/etc/sharelatex/settings.coffee
|
|
LATEX_PATH=/usr/local/texlive/2014/bin/x86_64-linux
|
|
|
|
echo $$ > /var/run/sharelatex-$SERVICE.pid
|
|
cd /var/www/sharelatex/$SERVICE
|
|
exec sudo -u $USER -g $GROUP env SHARELATEX_CONFIG=$SHARELATEX_CONFIG NODE_ENV=production PATH=$PATH:$LATEX_PATH $NODE app.js >> /var/log/sharelatex/$SERVICE.log 2>&1
|
|
end script |