I've a django server that server multiple sites, each site being a separate django project.
The layout is roughly :
Django/
project1/
app1
app2
.
settings.py
urls.py
templates
project2/
app1
etc.
static/
project1/
media/
css/
etc.
project2
media/
etc.
The static files are hosted with apache. The django files are hosted through mod_wsgi.
I would like to move the static files inside the corresponding django project folder so moving around projects would be easier, for deployment on production servers etc.
Would this pose any (security related) issues with wsgi or apache in such a layout? Would you instead recommend another deployment option (like fabric)?