I successfully deployed my Django site to IIS7 but I still have problems about how to configure IIS to serve the static files. I tried many many things from the internet but
If you are using django >= 1.3 and following the doc you are probably using the 'staticfiles' app.
/static/
and PATH /staticfiles/
(I have no experience with II7 but the conf should be straightforward)./manage.py collectstatic
to move the static files into the correct pathand you should be done...
More info on production settings here.
You also need to insert a web.config file into the static directory for IIS to serve the files.
See: Django Static Files - 404
Right click on your website in IIS7 manager and
and here you go :)