summary refs log tree commit diff
path: root/docs
diff options
context:
space:
mode:
authorRichard van der Hoff <1389908+richvdh@users.noreply.github.com>2019-03-25 09:59:36 +0000
committerGitHub <noreply@github.com>2019-03-25 09:59:36 +0000
commit7105057cf22464154f364bb216fb7033636a2af0 (patch)
treef45decf179466172de6e40a63bfc852ce2b67a13 /docs
parentRefactor out state delta handling into its own class (#4917) (diff)
downloadsynapse-7105057cf22464154f364bb216fb7033636a2af0.tar.xz
Fix nginx example in ACME doc. (#4923)
Diffstat (limited to 'docs')
-rw-r--r--docs/ACME.md2
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;
 }
 ```