I am a newer in web development.
Why should I avoid having the same web server handle both Django and static media files, like style sheets or JavaScript?
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
As a best practice, it is recommended to server static media files via a web server to make things faster.
Also, using a CDN enables content delivery more efficiently to users. The server that delivers content is based on a measure of quickest response time – network proximity(fewest hops) , availability, etc
You can read up more here:
http://developer.yahoo.com/performance/rules.html