summary refs log tree commit diff
path: root/changelog.d
diff options
context:
space:
mode:
authorDaniele Sluijters <daenney@users.noreply.github.com>2020-11-23 14:01:18 +0100
committerGitHub <noreply@github.com>2020-11-23 13:01:18 +0000
commit8ca120df7c2964c73390dbfab9ceba03f76eadfe (patch)
treeca2b1610d8d45b625aec420d4bdc3a6b51282492 /changelog.d
parentfix MD (diff)
downloadsynapse-8ca120df7c2964c73390dbfab9ceba03f76eadfe.tar.xz
INSTALL: Fix setting content-type on well-known (#8793)
When using `add_header` nginx will literally add a header. If a
`content-type` header is already configured (for example through a
server wide default), this means we end up with 2 content-type headers,
like so:

```
content-type: text/html
content-type: application/json
access-control-allow-origin: *
```

That doesn't make sense. Instead, we want the content type of that
block to only be `application/json` which we can achieve using
`default_type` instead.

Signed-off-by: Daniele Sluijters <daenney@users.noreply.github.com>
Diffstat (limited to 'changelog.d')
-rw-r--r--changelog.d/8793.doc1
1 files changed, 1 insertions, 0 deletions
diff --git a/changelog.d/8793.doc b/changelog.d/8793.doc
new file mode 100644
index 0000000000..f6eee1ea73
--- /dev/null
+++ b/changelog.d/8793.doc
@@ -0,0 +1 @@
+Fix the example on how to set the `Content-Type` header in nginx for the Client Well-Known URI.