mirror of
https://github.com/matrix-org/matrix-rust-sdk.git
synced 2026-05-07 15:33:45 -04:00
53 lines
934 B
Bash
53 lines
934 B
Bash
#!/bin/bash
|
|
set -e
|
|
export SYNAPSE_SERVER_NAME=matrix-sdk.rs
|
|
export SYNAPSE_REPORT_STATS=no
|
|
echo " ====== Generating config ====== "
|
|
/start.py generate
|
|
echo " ====== Patching for CI ====== "
|
|
echo """
|
|
enable_registration: true
|
|
enable_registration_without_verification: true
|
|
|
|
rc_message:
|
|
per_second: 1000
|
|
burst_count: 1000
|
|
|
|
rc_registration:
|
|
per_second: 1000
|
|
burst_count: 1000
|
|
|
|
rc_joins:
|
|
local:
|
|
per_second: 1000
|
|
burst_count: 1000
|
|
|
|
rc_invites:
|
|
per_room:
|
|
per_second: 1000
|
|
burst_count: 1000
|
|
per_user:
|
|
per_second: 1000
|
|
burst_count: 1000
|
|
per_issuer:
|
|
per_second: 1000
|
|
burst_count: 1000
|
|
|
|
rc_login:
|
|
address:
|
|
per_second: 1000
|
|
burst_count: 1000
|
|
# account:
|
|
# per_second: 0.17
|
|
# burst_count: 3
|
|
# failed_attempts:
|
|
# per_second: 0.17
|
|
# burst_count: 3
|
|
|
|
""" >> /data/homeserver.yaml
|
|
|
|
echo " ====== Starting server with: ====== "
|
|
cat /data/homeserver.yaml
|
|
echo " ====== STARTING ====== "
|
|
/start.py run
|