I created a static site to serve my static files, based on the end of the following tutorial: https://docs.digitalocean.com/developer-center/deploy-a-django-app-on-app-platform/.
I then performed:
curl -I -H 'Accept-Encoding: gzip,deflate' https://mysite.com
I received:
vary: Cookie, Accept-Encoding
content-encoding: gzip
Which I assume, confirms the server is configured to serve gzip.
However, when I curl my gzip CSS file the content-type is “application/gzip”, instead of “text/css”. How can I go about fixing this? Currently, it’s not applying any styling to my site.
This textbox defaults to using Markdown to format your answer.
You can type !ref in this text area to quickly search our full set of tutorials, documentation & marketplace offerings and insert the link!
These answers are provided by our Community. If you find them useful, show some love by clicking the heart. If you run into issues leave a comment, or add your own answer to help others.
Sign up for Infrastructure as a Newsletter.
Working on improving health and education, reducing inequality, and spurring economic growth? We'd like to help.
Get paid to write technical tutorials and select a tech-focused charity to receive a matching donation.
Hey @dorianadams,
I believe that this is currently not configurable via the App Platform.
It looks like someone has had the same idea before and has posted it on our Product Ideas board. The best thing to do would be to head over and add your vote to it, as well as adding any additional information in the comments for exactly what you’d like to see implemented!
In the meantime, what you could do is to use a CDN like Cloudflare, that way you will have more control over how your static files are served.
Hope that helps!
- Bobby.