| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118 |
- --- chat-sharelatex/run
- +++ chat-sharelatex/run
- @@ -6,4 +6,7 @@ if [ "$DEBUG_NODE" == "true" ]; then
- NODE_PARAMS="--inspect=0.0.0.0:30100"
- fi
- +source /etc/sharelatex/env.sh
- +export LISTEN_ADDRESS=127.0.0.1
- +
- exec /sbin/setuser www-data /usr/bin/node $NODE_PARAMS /overleaf/services/chat/app.js >> /var/log/sharelatex/chat.log 2>&1
- --- clsi-sharelatex/run
- +++ clsi-sharelatex/run
- @@ -15,4 +15,7 @@ if [ -e '/var/run/docker.sock' ]; then
- usermod -aG dockeronhost www-data
- fi
- +source /etc/sharelatex/env.sh
- +export LISTEN_ADDRESS=127.0.0.1
- +
- exec /sbin/setuser www-data /usr/bin/node $NODE_PARAMS /overleaf/services/clsi/app.js >> /var/log/sharelatex/clsi.log 2>&1
- --- contacts-sharelatex/run
- +++ contacts-sharelatex/run
- @@ -6,4 +6,7 @@ if [ "$DEBUG_NODE" == "true" ]; then
- NODE_PARAMS="--inspect=0.0.0.0:30360"
- fi
- +source /etc/sharelatex/env.sh
- +export LISTEN_ADDRESS=127.0.0.1
- +
- exec /sbin/setuser www-data /usr/bin/node $NODE_PARAMS /overleaf/services/contacts/app.js >> /var/log/sharelatex/contacts.log 2>&1
- --- docstore-sharelatex/run
- +++ docstore-sharelatex/run
- @@ -6,4 +6,7 @@ if [ "$DEBUG_NODE" == "true" ]; then
- NODE_PARAMS="--inspect=0.0.0.0:30160"
- fi
- +source /etc/sharelatex/env.sh
- +export LISTEN_ADDRESS=127.0.0.1
- +
- exec /sbin/setuser www-data /usr/bin/node $NODE_PARAMS /overleaf/services/docstore/app.js >> /var/log/sharelatex/docstore.log 2>&1
- --- document-updater-sharelatex/run
- +++ document-updater-sharelatex/run
- @@ -6,4 +6,7 @@ if [ "$DEBUG_NODE" == "true" ]; then
- NODE_PARAMS="--inspect=0.0.0.0:30030"
- fi
- +source /etc/sharelatex/env.sh
- +export LISTEN_ADDRESS=127.0.0.1
- +
- exec /sbin/setuser www-data /usr/bin/node $NODE_PARAMS /overleaf/services/document-updater/app.js >> /var/log/sharelatex/document-updater.log 2>&1
- --- filestore-sharelatex/run
- +++ filestore-sharelatex/run
- @@ -1,2 +1,6 @@
- #!/bin/bash
- +
- +source /etc/sharelatex/env.sh
- +export LISTEN_ADDRESS=127.0.0.1
- +
- exec /sbin/setuser www-data /usr/bin/node /overleaf/services/filestore/app.js >> /var/log/sharelatex/filestore.log 2>&1
- --- notifications-sharelatex/run
- +++ notifications-sharelatex/run
- @@ -6,4 +6,7 @@ if [ "$DEBUG_NODE" == "true" ]; then
- NODE_PARAMS="--inspect=0.0.0.0:30420"
- fi
- +source /etc/sharelatex/env.sh
- +export LISTEN_ADDRESS=127.0.0.1
- +
- exec /sbin/setuser www-data /usr/bin/node $NODE_PARAMS /overleaf/services/notifications/app.js >> /var/log/sharelatex/notifications.log 2>&1
- --- project-history-sharelatex/run
- +++ project-history-sharelatex/run
- @@ -6,4 +6,7 @@ if [ "$DEBUG_NODE" == "true" ]; then
- NODE_PARAMS="--inspect=0.0.0.0:30540"
- fi
- +source /etc/sharelatex/env.sh
- +export LISTEN_ADDRESS=127.0.0.1
- +
- exec /sbin/setuser www-data /usr/bin/node $NODE_PARAMS /overleaf/services/project-history/app.js >> /var/log/sharelatex/project-history.log 2>&1
- --- real-time-sharelatex/run
- +++ real-time-sharelatex/run
- @@ -1,2 +1,6 @@
- #!/bin/bash
- +
- +source /etc/sharelatex/env.sh
- +export LISTEN_ADDRESS=127.0.0.1
- +
- exec /sbin/setuser www-data /usr/bin/node /overleaf/services/real-time/app.js >> /var/log/sharelatex/real-time.log 2>&1
- --- spelling-sharelatex/run
- +++ spelling-sharelatex/run
- @@ -6,4 +6,7 @@ if [ "$DEBUG_NODE" == "true" ]; then
- NODE_PARAMS="--inspect=0.0.0.0:30050"
- fi
- +source /etc/sharelatex/env.sh
- +export LISTEN_ADDRESS=127.0.0.1
- +
- exec /sbin/setuser www-data /usr/bin/node $NODE_PARAMS /overleaf/services/spelling/app.js >> /var/log/sharelatex/spelling.log 2>&1
- --- web-api-sharelatex/run
- +++ web-api-sharelatex/run
- @@ -6,6 +6,7 @@ if [ "$DEBUG_NODE" == "true" ]; then
- NODE_PARAMS="--inspect=0.0.0.0:30000"
- fi
- +source /etc/sharelatex/env.sh
- export LISTEN_ADDRESS=0.0.0.0
- export ENABLED_SERVICES="api"
- export METRICS_APP_NAME="web-api"
- --- web-sharelatex/run
- +++ web-sharelatex/run
- @@ -6,6 +6,8 @@ if [ "$DEBUG_NODE" == "true" ]; then
- NODE_PARAMS="--inspect=0.0.0.0:40000"
- fi
- +source /etc/sharelatex/env.sh
- +export LISTEN_ADDRESS=127.0.0.1
- export ENABLED_SERVICES="web"
- export WEB_PORT="4000"
|