All my static files are being served fine, except the following two fonts files:
I'm guessing it has something to do with this files in particular as google fonts and all the other necessary static images and stylesheets are being loaded fine. It's being served from a subdomain from my domain, ie: I've tried adding all of the following in my
Any advice would be appreciated. asked 24 Nov '17, 16:48 elequ |
Just to be sure, you are serving the static content from an apache/mod_Wsgi stack or a Static/PHP/CGI type app? Httpd.conf would only apply to the apache/mod_Wsgi type app, it would also need those headers within a location directive to tell the application where it is being applied. You may also be able to set them in the app layer such as with this Django project, assuming you are using Django. answered 24 Nov '17, 19:49 johns |