mirror of
https://github.com/overleaf/overleaf.git
synced 2024-12-03 07:20:22 -05:00
29 lines
815 B
Text
29 lines
815 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=real-time
|
||
|
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
|