run 317 B

123456789101112
  1. #!/bin/bash
  2. NODE_PARAMS=""
  3. if [ "$DEBUG_NODE" == "true" ]; then
  4. echo "running debug - web"
  5. NODE_PARAMS="--inspect=0.0.0.0:40000"
  6. fi
  7. export ENABLED_SERVICES="web"
  8. export WEB_PORT="4000"
  9. exec /sbin/setuser www-data /usr/bin/node $NODE_PARAMS /overleaf/services/web/app.js >> /var/log/sharelatex/web.log 2>&1