2021-03-25 17:53:54 +01:00
|
|
|
#!/usr/bin/env bash
|
2014-08-12 16:10:52 +02:00
|
|
|
|
|
|
|
DIR="$( cd "$( dirname "$0" )" && pwd )"
|
|
|
|
|
|
|
|
CWD=$(pwd)
|
|
|
|
|
2021-10-18 17:44:27 +02:00
|
|
|
cd "$DIR/.." || exit
|
2014-08-12 16:10:52 +02:00
|
|
|
|
2022-05-30 17:41:24 +02:00
|
|
|
# Do not override PYTHONPATH if we are in a virtual env
|
|
|
|
if [ "$VIRTUAL_ENV" = "" ]; then
|
|
|
|
PYTHONPATH=$(readlink -f "$(pwd)")
|
|
|
|
export PYTHONPATH
|
|
|
|
echo "$PYTHONPATH"
|
|
|
|
fi
|
2015-04-30 05:24:44 +02:00
|
|
|
|
2022-05-18 20:49:33 +02:00
|
|
|
# Create servers which listen on HTTP at 808x and HTTPS at 848x.
|
2014-08-26 14:43:55 +02:00
|
|
|
for port in 8080 8081 8082; do
|
2014-08-12 16:10:52 +02:00
|
|
|
echo "Starting server on port $port... "
|
|
|
|
|
2014-09-02 11:51:42 +02:00
|
|
|
https_port=$((port + 400))
|
2015-04-30 05:24:44 +02:00
|
|
|
mkdir -p demo/$port
|
2021-10-18 17:44:27 +02:00
|
|
|
pushd demo/$port || exit
|
2014-09-02 11:51:42 +02:00
|
|
|
|
2022-05-18 20:49:33 +02:00
|
|
|
# Generate the configuration for the homeserver at localhost:848x, note that
|
|
|
|
# the homeserver name needs to match the HTTPS listening port for federation
|
|
|
|
# to properly work..
|
2019-06-14 14:03:46 +02:00
|
|
|
python3 -m synapse.app.homeserver \
|
2015-04-30 14:48:15 +02:00
|
|
|
--generate-config \
|
2022-05-18 20:49:33 +02:00
|
|
|
--server-name "localhost:$https_port" \
|
2022-03-08 21:02:59 +01:00
|
|
|
--config-path "$port.config" \
|
2015-09-23 10:55:24 +02:00
|
|
|
--report-stats no
|
2014-09-01 16:51:15 +02:00
|
|
|
|
2022-03-08 21:02:59 +01:00
|
|
|
if ! grep -F "Customisation made by demo/start.sh" -q "$port.config"; then
|
|
|
|
# Generate TLS keys.
|
|
|
|
openssl req -x509 -newkey rsa:4096 \
|
|
|
|
-keyout "localhost:$port.tls.key" \
|
|
|
|
-out "localhost:$port.tls.crt" \
|
|
|
|
-days 365 -nodes -subj "/O=matrix"
|
2019-07-22 12:31:05 +02:00
|
|
|
|
2022-03-08 21:02:59 +01:00
|
|
|
# Add customisations to the configuration.
|
2021-10-23 00:00:04 +02:00
|
|
|
{
|
2022-03-08 21:02:59 +01:00
|
|
|
printf '\n\n# Customisation made by demo/start.sh\n\n'
|
2021-10-23 00:00:04 +02:00
|
|
|
echo "public_baseurl: http://localhost:$port/"
|
|
|
|
echo 'enable_registration: true'
|
2022-03-25 18:11:01 +01:00
|
|
|
echo 'enable_registration_without_verification: true'
|
2022-03-08 21:02:59 +01:00
|
|
|
echo ''
|
2021-10-23 00:00:04 +02:00
|
|
|
|
|
|
|
# Warning, this heredoc depends on the interaction of tabs and spaces.
|
2023-05-03 14:07:49 +02:00
|
|
|
# Please don't accidentally bork me with your fancy settings.
|
2021-10-23 00:00:04 +02:00
|
|
|
listeners=$(cat <<-PORTLISTENERS
|
|
|
|
# Configure server to listen on both $https_port and $port
|
|
|
|
# This overides some of the default settings above
|
|
|
|
listeners:
|
|
|
|
- port: $https_port
|
|
|
|
type: http
|
|
|
|
tls: true
|
|
|
|
resources:
|
|
|
|
- names: [client, federation]
|
|
|
|
|
|
|
|
- port: $port
|
|
|
|
tls: false
|
|
|
|
bind_addresses: ['::1', '127.0.0.1']
|
|
|
|
type: http
|
|
|
|
x_forwarded: true
|
|
|
|
resources:
|
|
|
|
- names: [client, federation]
|
|
|
|
compress: false
|
|
|
|
PORTLISTENERS
|
|
|
|
)
|
|
|
|
|
|
|
|
echo "${listeners}"
|
|
|
|
|
2022-03-08 21:02:59 +01:00
|
|
|
# Disable TLS for the servers
|
|
|
|
printf '\n\n# Disable TLS for the servers.'
|
2021-10-23 00:00:04 +02:00
|
|
|
echo '# DO NOT USE IN PRODUCTION'
|
|
|
|
echo 'use_insecure_ssl_client_just_for_testing_do_not_use: true'
|
|
|
|
echo 'federation_verify_certificates: false'
|
|
|
|
|
2022-03-08 21:02:59 +01:00
|
|
|
# Set paths for the TLS certificates.
|
|
|
|
echo "tls_certificate_path: \"$DIR/$port/localhost:$port.tls.crt\""
|
|
|
|
echo "tls_private_key_path: \"$DIR/$port/localhost:$port.tls.key\""
|
2021-10-23 00:00:04 +02:00
|
|
|
|
2023-05-03 14:07:49 +02:00
|
|
|
# Request keys directly from servers contacted over federation
|
|
|
|
echo 'trusted_key_servers: []'
|
2022-03-08 21:02:59 +01:00
|
|
|
|
|
|
|
# Allow the servers to communicate over localhost.
|
|
|
|
allow_list=$(cat <<-ALLOW_LIST
|
|
|
|
# Allow the servers to communicate over localhost.
|
|
|
|
ip_range_whitelist:
|
|
|
|
- '127.0.0.1/8'
|
|
|
|
- '::1/128'
|
|
|
|
ALLOW_LIST
|
2021-10-23 00:00:04 +02:00
|
|
|
)
|
|
|
|
|
2022-03-08 21:02:59 +01:00
|
|
|
echo "${allow_list}"
|
|
|
|
} >> "$port.config"
|
2019-06-17 17:24:28 +02:00
|
|
|
fi
|
2019-04-01 14:16:24 +02:00
|
|
|
|
2015-06-04 17:58:17 +02:00
|
|
|
# Check script parameters
|
|
|
|
if [ $# -eq 1 ]; then
|
2021-10-22 23:46:06 +02:00
|
|
|
if [ "$1" = "--no-rate-limit" ]; then
|
2021-04-22 18:49:42 +02:00
|
|
|
|
|
|
|
# Disable any rate limiting
|
|
|
|
ratelimiting=$(cat <<-RC
|
|
|
|
rc_message:
|
|
|
|
per_second: 1000
|
|
|
|
burst_count: 1000
|
|
|
|
rc_registration:
|
|
|
|
per_second: 1000
|
|
|
|
burst_count: 1000
|
|
|
|
rc_login:
|
|
|
|
address:
|
|
|
|
per_second: 1000
|
|
|
|
burst_count: 1000
|
|
|
|
account:
|
|
|
|
per_second: 1000
|
|
|
|
burst_count: 1000
|
|
|
|
failed_attempts:
|
|
|
|
per_second: 1000
|
|
|
|
burst_count: 1000
|
|
|
|
rc_admin_redaction:
|
|
|
|
per_second: 1000
|
|
|
|
burst_count: 1000
|
|
|
|
rc_joins:
|
|
|
|
local:
|
|
|
|
per_second: 1000
|
|
|
|
burst_count: 1000
|
|
|
|
remote:
|
|
|
|
per_second: 1000
|
|
|
|
burst_count: 1000
|
|
|
|
rc_3pid_validation:
|
|
|
|
per_second: 1000
|
|
|
|
burst_count: 1000
|
|
|
|
rc_invites:
|
|
|
|
per_room:
|
|
|
|
per_second: 1000
|
|
|
|
burst_count: 1000
|
|
|
|
per_user:
|
|
|
|
per_second: 1000
|
|
|
|
burst_count: 1000
|
|
|
|
RC
|
|
|
|
)
|
2022-03-08 21:02:59 +01:00
|
|
|
echo "${ratelimiting}" >> "$port.config"
|
2015-06-04 17:58:17 +02:00
|
|
|
fi
|
|
|
|
fi
|
|
|
|
|
2022-03-08 21:02:59 +01:00
|
|
|
# Always disable reporting of stats if the option is not there.
|
|
|
|
if ! grep -F "report_stats" -q "$port.config" ; then
|
|
|
|
echo "report_stats: false" >> "$port.config"
|
2015-10-22 11:43:35 +02:00
|
|
|
fi
|
2015-10-13 19:00:02 +02:00
|
|
|
|
2022-03-08 21:02:59 +01:00
|
|
|
# Run the homeserver in the background.
|
2019-06-14 14:03:46 +02:00
|
|
|
python3 -m synapse.app.homeserver \
|
2022-03-08 21:02:59 +01:00
|
|
|
--config-path "$port.config" \
|
2015-04-30 05:24:44 +02:00
|
|
|
-D \
|
2014-09-01 16:51:15 +02:00
|
|
|
|
2021-10-18 17:44:27 +02:00
|
|
|
popd || exit
|
2014-08-12 16:10:52 +02:00
|
|
|
done
|
|
|
|
|
2021-10-18 17:44:27 +02:00
|
|
|
cd "$CWD" || exit
|