hi folks, I've read the docs on serving static media. Curious, does that mean I should have 1 static_media app per domain/project? i.e if i want to have asked 19 Jun '11, 13:31 amateur |
If that's the case, then I'm not doing that. So far my setup has a symbolic link app created to point at one of the Django admin media folders, and then applied to the three django sites I've configured so far. I have also done a mix of static setups for my purposes. In two cases, the static content comes from within the git repository clone that is being used to serve these site, so I have defined two symbolic links, one for each project, and pointed it at the subfolder with the static content in. For my third django site/app, I have setup a Static app to serve the static content directly. HTH, Carl answered 19 Jun '11, 13:37 Carl Marshall |
It boils down to this:
answered 19 Jun '11, 13:52 seanf |