diff options
author | Richard van der Hoff <1389908+richvdh@users.noreply.github.com> | 2019-03-25 09:59:36 +0000 |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-03-25 09:59:36 +0000 |
commit | 7105057cf22464154f364bb216fb7033636a2af0 (patch) | |
tree | f45decf179466172de6e40a63bfc852ce2b67a13 /docs | |
parent | Refactor out state delta handling into its own class (#4917) (diff) | |
download | synapse-7105057cf22464154f364bb216fb7033636a2af0.tar.xz |
Fix nginx example in ACME doc. (#4923)
Diffstat (limited to 'docs')
-rw-r--r-- | docs/ACME.md | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/docs/ACME.md b/docs/ACME.md index 46136a9f2c..9eb18a9cf5 100644 --- a/docs/ACME.md +++ b/docs/ACME.md @@ -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; } ``` |