-
Notifications
You must be signed in to change notification settings - Fork 57
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
81e2a26
commit af97ef4
Showing
11 changed files
with
436 additions
and
32 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,53 @@ | ||
#!/bin/bash | ||
|
||
CMD="" | ||
|
||
$CMD perl -pi -w -e \ | ||
's/rc_messages_per_second.*/rc_messages_per_second: 1000/g;' data/homeserver.yaml | ||
$CMD perl -pi -w -e \ | ||
's/rc_message_burst_count.*/rc_message_burst_count: 10000/g;' data/homeserver.yaml | ||
|
||
( | ||
cat <<HEREDOC | ||
rc_message: | ||
per_second: 10000 | ||
burst_count: 100000 | ||
rc_registration: | ||
per_second: 10000 | ||
burst_count: 30000 | ||
rc_login: | ||
address: | ||
per_second: 10000 | ||
burst_count: 30000 | ||
account: | ||
per_second: 10000 | ||
burst_count: 30000 | ||
failed_attempts: | ||
per_second: 10000 | ||
burst_count: 30000 | ||
rc_admin_redaction: | ||
per_second: 1000 | ||
burst_count: 5000 | ||
rc_joins: | ||
local: | ||
per_second: 10000 | ||
burst_count: 100000 | ||
remote: | ||
per_second: 10000 | ||
burst_count: 100000 | ||
HEREDOC | ||
) | $CMD tee -a data/homeserver.yaml | ||
|
||
$CMD perl -pi -w -e \ | ||
's/#enable_registration: false/enable_registration: true/g;' data/homeserver.yaml | ||
$CMD perl -pi -w -e \ | ||
's/tls: false/tls: true/g;' data/homeserver.yaml | ||
$CMD perl -pi -w -e \ | ||
's/#tls_certificate_path:/tls_certificate_path:/g;' data/homeserver.yaml | ||
$CMD perl -pi -w -e \ | ||
's/#tls_private_key_path:/tls_private_key_path:/g;' data/homeserver.yaml | ||
|
||
$CMD openssl req -x509 -newkey rsa:4096 -keyout data/localhost.tls.key -out data/localhost.tls.crt -days 365 -subj '/CN=localhost' -nodes | ||
|
||
$CMD chmod 0777 data/localhost.tls.crt | ||
$CMD chmod 0777 data/localhost.tls.key |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,31 @@ | ||
SYNAPSE_IMAGE="matrixdotorg/synapse:v1.24.0" | ||
|
||
test: ## Run the tests | ||
@cd build/ && GTEST_COLOR=1 ctest --verbose | ||
|
||
synapse: ## Start a synapse instance on docker | ||
@mkdir -p data | ||
@chmod 0777 data | ||
@docker run -v `pwd`/data:/data --rm \ | ||
-e SYNAPSE_SERVER_NAME=localhost -e SYNAPSE_REPORT_STATS=no ${SYNAPSE_IMAGE} generate | ||
@./.ci/adjust-config.sh | ||
@docker run -d \ | ||
--name synapse \ | ||
-p 443:8008 \ | ||
-p 8448:8008 \ | ||
-p 8008:8008 \ | ||
-v `pwd`/data:/data ${SYNAPSE_IMAGE} | ||
@echo Waiting for synapse to start... | ||
@until curl -s -f -k https://localhost:443/_matrix/client/versions; do echo "Checking ..."; sleep 2; done | ||
@echo Register alice | ||
@docker exec synapse /bin/sh -c 'register_new_matrix_user --admin -u alice -p secret -c /data/homeserver.yaml https://localhost:8008' | ||
@echo Register bob | ||
@docker exec synapse /bin/sh -c 'register_new_matrix_user --admin -u bob -p secret -c /data/homeserver.yaml https://localhost:8008' | ||
@echo Register carl | ||
@docker exec synapse /bin/sh -c 'register_new_matrix_user --admin -u carl -p secret -c /data/homeserver.yaml https://localhost:8008' | ||
|
||
stop-synapse: ## Stop any running instance of synapse | ||
@rm -rf ./data/* | ||
@docker rm -f synapse 2>&1>/dev/null | ||
|
||
restart: stop-synapse synapse |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.