mirror of
https://github.com/vector-im/element-web.git
synced 2024-11-25 09:58:11 +08:00
6c69f3e3b6
* Ensure a useful logfile gets recorded for synapse startup failures * Update synapse config to stop complaining about key servers * Add flag to turn on registrations again From https://github.com/matrix-org/synapse/pull/12091
10 lines
182 B
Bash
Executable File
10 lines
182 B
Bash
Executable File
#!/bin/bash
|
|
set -e
|
|
|
|
BASE_DIR=$(cd $(dirname $0) && pwd)
|
|
cd $BASE_DIR
|
|
cd installations/consent/env/bin/
|
|
source activate
|
|
echo "Synapse log file at $LOGFILE"
|
|
./synctl start 2> $LOGFILE
|