Merge branch 'dockerdoc-nginx-content-type' into 'next'

Describe a better way to enforce Content-Type in nginx

See merge request famedly/conduit!415
merge-requests/413/merge
Jonas Zohren 2 years ago
commit bb9bc0a001

@ -121,12 +121,12 @@ So...step by step:
location /.well-known/matrix/server {
return 200 '{"m.server": "<SUBDOMAIN>.<DOMAIN>:443"}';
add_header Content-Type application/json;
types { } default_type "application/json; charset=utf-8";
}
location /.well-known/matrix/client {
return 200 '{"m.homeserver": {"base_url": "https://<SUBDOMAIN>.<DOMAIN>"}}';
add_header Content-Type application/json;
types { } default_type "application/json; charset=utf-8";
add_header "Access-Control-Allow-Origin" *;
}

Loading…
Cancel
Save