The /data/regionsMetadataJavascript URL contains a Javascript file, and is sourced using a script tag. However, it is being delivered with application/json as its content type, which breaks the application when the security headers for NGINX are enabled.
The header which triggers browsers to break in this case is:
X-Content-Type-Options: nosniff
Switching that security header off until the content type is fixed.
The
/data/regionsMetadataJavascript
URL contains a Javascript file, and is sourced using ascript
tag. However, it is being delivered withapplication/json
as its content type, which breaks the application when the security headers for NGINX are enabled.The header which triggers browsers to break in this case is:
Switching that security header off until the content type is fixed.