Top "Static-files" questions

Static-files are ones that don't get amended during runtime.

How to serve static files in Flask

So this is embarrassing. I've got an application that I threw together in Flask and for now it is just …

python flask static-files
Use nginx to serve static files from subdirectories of a given directory

I have several sets of static .html files on my server, and I would like use nginx to serve them …

nginx static-files
Django - Static file not found

I've seen several posts for this issue but didn't found my solution. I'm trying to serve static files within my …

django static-files
How to serve all existing static files directly with NGINX, but proxy the rest to a backend server.

location / { proxy_set_header X-Real-IP $remote_addr; proxy_set_header Host $host; proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_…

nginx reverse-proxy static-files
Django -- Can't get static CSS files to load

I'm running Django's development server (runserver) on my local machine (Mac OS X) and cannot get the CSS files to …

python django static-files
Learning Node - Express Public folder not working

So I'm new to node and trying to learn how to use the express library with it. However, the problem …

node.js express static-files
What's the point of Django's collectstatic?

This is probably a stupid question, but it's just not clicking in my head. In Django, the convention is to …

python django django-staticfiles static-files collectstatic
What is the best practice for serving html in node.js with express.js?

I currently am serving all my html right in my app.js/server.js file like this: app.get('/…

html node.js express static-files
Node/Express - Refused to apply style because its MIME type ('text/html')

I've been having this issue for the past couple of days and can't seem to get to the bottom of …

node.js express mime-types static-files
How to set-up a Django project with django-storages and Amazon S3, but with different folders for static files and media files?

I'm configuring a Django project that were using the server filesystem for storing the apps static files (STATIC_ROOT) and …

django amazon-s3 django-settings static-files django-storage