AppEngine Static File MIME Type Override
In AppEngine, static file handlers can occasionally override the correct MIME type, resulting in the error message: "Could not guess mimetype for [file]. Using application/octet-stream..."
Problem Resolution
To correct this issue and specify the correct MIME type for static files, follow these steps:
- url: /home/font/(.*\.otf) static_files: home/font/ upload: home/font/(.*\.otf) mime_type: application/x-font-otf
Example App.yaml Configuration
The following app.yaml configuration demonstrates the correct use of "mime_type":
application: test version: 0 runtime: go ... handlers: - url: /home/font/(.*\.otf) static_files: home/font/ upload: home/font/(.*\.otf) mime_type: application/x-font-otf ...
Additional Resources
The above is the detailed content of How to Fix \'Could not guess mimetype for [file]. Using application/octet-stream...\' Error in AppEngine?. For more information, please follow other related articles on the PHP Chinese website!