diff options
author | Andrew Morgan <andrew@amorgan.xyz> | 2019-02-01 16:59:23 +0000 |
---|---|---|
committer | Andrew Morgan <andrew@amorgan.xyz> | 2019-02-01 16:59:23 +0000 |
commit | da6df65e195bd1a29b2d186d4ed4c988ca4f1f34 (patch) | |
tree | d80bde41d751884b5077b8681f0fe3ad274927d1 /README.rst | |
parent | Address comments (diff) | |
download | synapse-da6df65e195bd1a29b2d186d4ed4c988ca4f1f34.tar.xz |
Fix nginx capatilization
Diffstat (limited to 'README.rst')
-rw-r--r-- | README.rst | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/README.rst b/README.rst index 6e3ee01f2e..9e3d85de4c 100644 --- a/README.rst +++ b/README.rst @@ -245,13 +245,13 @@ this problem. **Using a reverse proxy** -A reverse proxy such as Apache or Nginx allows a single process (the web +A reverse proxy such as Apache or nginx allows a single process (the web server) to listen on port 80 and proxy traffic to the appropriate program running on your server. It is the recommended method for setting up ACME as it allows you to use your existing webserver while also allowing Synapse to provision certificates as needed. -For Nginx users, add the following line to your existing ``server`` block:: +For nginx users, add the following line to your existing ``server`` block:: location /.well-known/acme-challenge { proxy_pass http://localhost:8009/; |