Skip to content
Snippets Groups Projects
start.sh 1.11 KiB
Newer Older
  • Learn to ignore specific revisions
  • matrix.org's avatar
    matrix.org committed
    #!/bin/bash
    
    DIR="$( cd "$( dirname "$0" )" && pwd )"
    
    CWD=$(pwd)
    
    cd "$DIR/.."
    
    
    mkdir -p demo/etc
    
    
    export PYTHONPATH=$(readlink -f $(pwd))
    
    
    echo $PYTHONPATH
    
    
    for port in 8080 8081 8082; do
    
    matrix.org's avatar
    matrix.org committed
        echo "Starting server on port $port... "
    
    
        https_port=$((port + 400))
    
        #rm $DIR/etc/$port.config
    
    matrix.org's avatar
    matrix.org committed
        python -m synapse.app.homeserver \
    
            --generate-config \
            -H "localhost:$https_port" \
    
            --config-path "$DIR/etc/$port.config" \
    
        # 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
    
    
        perl -p -i -e 's/^enable_registration:.*/enable_registration: true/g' $DIR/etc/$port.config
    
    
        python -m synapse.app.homeserver \
    
            --config-path "$DIR/etc/$port.config" \
            -D \
    
    matrix.org's avatar
    matrix.org committed
    done
    
    cd "$CWD"