Hi, I've just started playing with Django and I must say I'm
impressed. It's easy, it's fast, it's beautiful.

I wrote a small app and will be going to production soon. I deployed
the site to a staging server and I'm having some trouble serving
static files (I keep getting 404's). I realize it's really an issue of
my web server configuration, not Django's but still, I thought I might
get some help here.

Django itself is running fine on fcgi + Nginx, it's just the static
content I'm struggling with. For now, I'm using just one instance of
Nginx to serve both dynamic and static content, on the production
server I might use Apache + mod_python + nginx, don't know yet.

All my static files (css, js and so forth) live under a folder called
main in my site's
root directory.

The relevant parts of the nginx.conf file are here: http://pastie.org/222952

and in my settings.py file:

MEDIA_ROOT = '/var/www/apps/example/current/example/media'
MEDIA_URL = '/site_media/'

Locally, everything works fine with django.views.static.serve, it's
just on the remote
server I am having trouble.

Thank you
Juan











--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups 
"Django users" group.
To post to this group, send email to django-users@googlegroups.com
To unsubscribe from this group, send email to [EMAIL PROTECTED]
For more options, visit this group at 
http://groups.google.com/group/django-users?hl=en
-~----------~----~----~----~------~----~------~--~---

Reply via email to