summary refs log tree commit diff
path: root/changelog.d/8793.doc (follow)
Commit message (Collapse)AuthorAgeFilesLines
* 1.24.0rc1Patrick Cloke2020-12-021-1/+0
|
* INSTALL: Fix setting content-type on well-known (#8793)Daniele Sluijters2020-11-231-0/+1
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>