-
-
Notifications
You must be signed in to change notification settings - Fork 5.7k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
[API] Provide correct MIME type when getting a raw text file #8152
Comments
There are security implications when serving scripts with the proper mime type because that allow browser to load them from $ curl -v https://raw.githubusercontent.com/go-gitea/gitea/master/web_src/js/jquery.js |& grep -i content-type
< content-type: text/plain; charset=utf-8
< x-content-type-options: nosniff |
Resolves go-gitea#8152. Signed-off-by: Trevor Slocum <trevor@rocketnine.space>
I think we should keep to generic mime types, e.g. We could expose a user-configurable config section where they can add their mime type mapping to allow them to serve custom mime types (and potentially lower their security). [download.mimetype.mapping]
.apk=application/vnd.android.package-archive
.js=application/javascript |
Can anyone check the PR for this issue? #15133 |
Description
When fetching a raw text file via the API the content type header does not reflect the file's MIME type.
https://try.gitea.io/api/v1/repos/go-gitea/gitea/raw/public/js/draw.js
Content-Type: text/plain; charset=utf-8
Expected result would be:
Content-Type: application/javascript
When fetching an image file via the API, the content type seems to be set correctly though:
https://try.gitea.io/api/v1/repos/go-gitea/gitea/raw/public/img/404.png
Content-Type: image/png
This is related to issue #7620.
The text was updated successfully, but these errors were encountered: