Django Using Nginx To Serve Static Content
I am trying to configure nginx to serve the static content for my django project on a remote VPS. I'm using the following configuration for my nginx instance: server { server_n
Solution 1:
You shouldn't access your website by 123.123.123.123:8001
because that's the port django is using. You are supposed to access 123.123.123.123
(that is port 80) where nginx is running.
Post a Comment for "Django Using Nginx To Serve Static Content"