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
|
|
|
|
2019-04-01 08:16:24 -04:00
|
|
|
printf '\n\n# Customisation made by demo/start.sh\n' >> $DIR/etc/$port.config
|
|
|
|
echo 'enable_registration: true' >> $DIR/etc/$port.config
|
|
|
|
|
2015-06-04 11:58:17 -04:00
|
|
|
# Check script parameters
|
|
|
|
if [ $# -eq 1 ]; then
|
|
|
|
if [ $1 = "--no-rate-limit" ]; then
|
2019-04-01 08:16:24 -04:00
|
|
|
# messages rate limit
|
|
|
|
echo 'rc_messages_per_second: 1000' >> $DIR/etc/$port.config
|
|
|
|
echo 'rc_message_burst_count: 1000' >> $DIR/etc/$port.config
|
|
|
|
|
|
|
|
# registration rate limit
|
|
|
|
printf 'rc_registration:\n per_second: 1000\n burst_count: 1000\n' >> $DIR/etc/$port.config
|
|
|
|
|
|
|
|
# login rate limit
|
|
|
|
echo 'rc_login:' >> $DIR/etc/$port.config
|
|
|
|
printf ' address:\n per_second: 1000\n burst_count: 1000\n' >> $DIR/etc/$port.config
|
|
|
|
printf ' account:\n per_second: 1000\n burst_count: 1000\n' >> $DIR/etc/$port.config
|
|
|
|
printf ' failed_attempts:\n per_second: 1000\n burst_count: 1000\n' >> $DIR/etc/$port.config
|
2015-06-04 11:58:17 -04:00
|
|
|
fi
|
|
|
|
fi
|
|
|
|
|
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"
|