-
Notifications
You must be signed in to change notification settings - Fork 56
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
updated nginx configuration information required for recent versions of synapse #64
Comments
matrix-ansible-deploy uses a different, non-regex based solution which uses separate |
For me the
part did not work. I have to use
Is this a bug in the description, or predictable behavior due to the new
is the problem here as with the new version a regular expression was introduced and that's why the old config does not work anymore (match by order) One more thought: |
@q-wertz huge thanks for your suggestion, I also had to add |
You're welcome 🎉 |
matrix-org/synapse#8227 replaced the previous
location /_matrix {
with
location ~* ^(\/_matrix|\/_synapse\/client) {
which now seems to interfer with the configuration required for ma1sd. When doing the change above riot/element complains about not being able to reach the identity server, if I revert it back to just
/_matrix
it works again but I wonder what problems I'll run into with not following the recent upstream change.I'm not an nginx and/or regex expert so any advice here is greatly appreciated, here's the relevant part of my configuration:
The text was updated successfully, but these errors were encountered: