You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I have an Nginx reverse proxy serving the app at https://www.alteredconstants.com/. The proxy has the X-Content-Type-Options: nosniff header set so the commons.js and main.js scripts are not being loaded by the browser because those files are receiving a MIME type of application/octet-stream instead of application/javascript.
I have an Nginx reverse proxy serving the app at https://www.alteredconstants.com/. The proxy has the
X-Content-Type-Options: nosniff
header set so thecommons.js
andmain.js
scripts are not being loaded by the browser because those files are receiving a MIME type ofapplication/octet-stream
instead ofapplication/javascript
.I verified this with curl:
Without gzip, it works fine:
For what it's worth, the actual pages have the correct
text/html
type. Removing theX-Content-Type-Options
"fixes" the problem, but that's not ideal.The text was updated successfully, but these errors were encountered: