How to configure server for small hosting company for django-powered flash sites? - Stack Overflow most recent 30 from stackoverflow.com2009-12-07T21:51:52Zhttp://stackoverflow.com/feeds/question/202068http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/202068/how-to-configure-server-for-small-hosting-company-for-django-powered-flash-sites1How to configure server for small hosting company for django-powered flash sites?saturdayplace2008-10-14T17:25:10Z2008-11-09T00:32:27Z
<p>I'm looking at setting up a small company that hosts flash-based websites for artist portfolios. The customer control panel would be django-powered, and would provide the interface for uploading their images, managing galleries, selling prints, etc.</p>
<p>Seeing as the majority of traffic to the hosted sites would end up at their top level domain, this would result in only static media hits (the HTML page with the embedded flash movie), I could set up lighttpd or nginx to handle those requests, and pass the django stuff back to apache/mod_whatever.</p>
<p>Seems as if I could set this all up on one box, with the django sites framework keeping each site's admin separate.</p>
<p>I'm not much of a server admin. Are there any gotchas I'm not seeing?</p>
http://stackoverflow.com/questions/202068/how-to-configure-server-for-small-hosting-company-for-django-powered-flash-sites/220711#2207110Answer by Justin Voss for How to configure server for small hosting company for django-powered flash sites?Justin Voss2008-10-21T03:44:54Z2008-10-21T03:44:54Z<p>Maybe. I don't think the built-in admin interface is really designed to corral admins into their own sites. The <code>sites</code> framework is more suited to publish the same content on multiple sites, not to constrain users to one site or another. You'd be better off writing your own admin interface that enforces those separations.</p>
<p>As far as serving content goes, it seems like you could serve up a common (static) Flash file that uses a dynamic XML file to fill in content. If you use Django to generate the XML, that would give you the dynamic content you need.</p>
http://stackoverflow.com/questions/202068/how-to-configure-server-for-small-hosting-company-for-django-powered-flash-sites/275429#2754290Answer by Bjarte Minde for How to configure server for small hosting company for django-powered flash sites?Bjarte Minde2008-11-09T00:32:27Z2008-11-09T00:32:27Z<p>This django snippet might be what you need to keep them seperate:</p>
<p><a href="http://www.djangosnippets.org/snippets/1054/" rel="nofollow">http://www.djangosnippets.org/snippets/1054/</a></p>
<p>"A very simple multiple user blog model with an admin interface configured to only allow people to edit or delete entries that they have created themselves, unless they are a super user."</p>