2014-08-12 10:10:52 -04:00
|
|
|
#!/bin/bash
|
|
|
|
|
|
|
|
DIR="$( cd "$( dirname "$0" )" && pwd )"
|
|
|
|
|
|
|
|
CWD=$(pwd)
|
|
|
|
|
|
|
|
cd "$DIR/.."
|
|
|
|
|
2014-09-01 10:51:15 -04:00
|
|
|
mkdir -p demo/etc
|
|
|
|
|
2015-04-29 23:24:44 -04:00
|
|
|
export PYTHONPATH=$(readlink -f $(pwd))
|
|
|
|
|
|
|
|
|
|
|
|
echo $PYTHONPATH
|
|
|
|
|
2014-08-26 08:43:55 -04:00
|
|
|
for port in 8080 8081 8082; do
|
2014-08-12 10:10:52 -04:00
|
|
|
echo "Starting server on port $port... "
|
|
|
|
|
2014-09-02 05:51:42 -04:00
|
|
|
https_port=$((port + 400))
|
2015-04-29 23:24:44 -04:00
|
|
|
mkdir -p demo/$port
|
2015-04-30 11:52:57 -04:00
|
|
|
pushd demo/$port
|
2014-09-02 05:51:42 -04:00
|
|
|
|
2015-04-30 11:04:02 -04:00
|
|
|
#rm $DIR/etc/$port.config
|
2014-08-12 10:10:52 -04:00
|
|
|
python -m synapse.app.homeserver \
|
2015-04-30 08:48:15 -04:00
|
|
|
--generate-config \
|
|
|
|
-H "localhost:$https_port" \
|
2015-04-29 23:24:44 -04:00
|
|
|
--config-path "$DIR/etc/$port.config" \
|
2015-09-23 04:55:24 -04:00
|
|
|
--report-stats no
|
2014-09-01 10:51:15 -04:00
|
|
|
|
2015-06-04 11:58:17 -04:00
|
|
|
# Check script parameters
|
|
|
|
if [ $# -eq 1 ]; then
|
|
|
|
if [ $1 = "--no-rate-limit" ]; then
|
|
|
|
# Set high limits in config file to disable rate limiting
|
|
|
|
perl -p -i -e 's/rc_messages_per_second.*/rc_messages_per_second: 1000/g' $DIR/etc/$port.config
|
|
|
|
perl -p -i -e 's/rc_message_burst_count.*/rc_message_burst_count: 1000/g' $DIR/etc/$port.config
|
|
|
|
fi
|
|
|
|
fi
|
|
|
|
|
2015-08-12 11:53:30 -04:00
|
|
|
perl -p -i -e 's/^enable_registration:.*/enable_registration: true/g' $DIR/etc/$port.config
|
|
|
|
|
2015-10-22 05:43:35 -04:00
|
|
|
if ! grep -F "full_twisted_stacktraces" -q $DIR/etc/$port.config; then
|
|
|
|
echo "full_twisted_stacktraces: true" >> $DIR/etc/$port.config
|
|
|
|
fi
|
|
|
|
if ! grep -F "report_stats" -q $DIR/etc/$port.config ; then
|
|
|
|
echo "report_stats: false" >> $DIR/etc/$port.config
|
|
|
|
fi
|
2015-10-13 13:00:02 -04:00
|
|
|
|
2014-09-01 10:51:15 -04:00
|
|
|
python -m synapse.app.homeserver \
|
2015-04-29 23:24:44 -04:00
|
|
|
--config-path "$DIR/etc/$port.config" \
|
|
|
|
-D \
|
2014-09-01 10:51:15 -04:00
|
|
|
-vv \
|
|
|
|
|
2015-04-30 11:52:57 -04:00
|
|
|
popd
|
2014-08-12 10:10:52 -04:00
|
|
|
done
|
|
|
|
|
|
|
|
cd "$CWD"
|