0
0
Fork 1
mirror of https://mau.dev/maunium/synapse.git synced 2024-06-01 18:28:56 +02:00

Fix nginx example in ACME doc. (#4923)

This commit is contained in:
Richard van der Hoff 2019-03-25 09:59:36 +00:00 committed by GitHub
parent ac396a0d32
commit 7105057cf2
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 2 additions and 1 deletions

1
changelog.d/4923.misc Normal file
View file

@ -0,0 +1 @@
Fix nginx example in ACME doc.

View file

@ -67,7 +67,7 @@ For nginx users, add the following line to your existing `server` block:
```
location /.well-known/acme-challenge {
proxy_pass http://localhost:8009/;
proxy_pass http://localhost:8009;
}
```