mirror of
https://github.com/overleaf/overleaf.git
synced 2024-11-07 20:31:06 -05:00
c22e6a5926
Force services to use ipv4 in server-ce container GitOrigin-RevId: 9cf2734f8506bba15ef3ac11060508d2604d09ad
12 lines
337 B
Bash
Executable file
12 lines
337 B
Bash
Executable file
#!/bin/bash
|
|
|
|
NODE_PARAMS=""
|
|
if [ "$DEBUG_NODE" == "true" ]; then
|
|
echo "running debug - docstore"
|
|
NODE_PARAMS="--inspect=0.0.0.0:30160"
|
|
fi
|
|
|
|
source /etc/overleaf/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/overleaf/docstore.log 2>&1
|