Update nginx-vhost-config.sh for register

This commit is contained in:
kjg 2021-07-17 19:43:13 +02:00
parent 2eae292780
commit 426ae00478
1 changed files with 14 additions and 0 deletions

View File

@ -65,6 +65,12 @@ client_endpoints=$(tr -d '\n' << EOF
EOF
)
register_endpoints=$(tr -d '\n' << EOF
(^/_matrix/client/(api/v1|r0|unstable)/login$
|^/_matrix/client/(r0|unstable)/register$)
EOF
)
cat << EOF
# Deny access to root.
deny all;
@ -136,4 +142,12 @@ if [ -n "$CLIENT_WORKERS" ]; then
EOF
fi
if [ -n "$REGISTER_WORKERS" ]; then
cat << EOF
location ~ $register_endpoints {
proxy_pass http://register_workers;
}
EOF
fi
echo "}"