Thanks James
I'm serving the sites with nginx, but in my django urls file I'm using this
line for a simple pages app we've built.

urlpatterns += patterns('fact.pages.views',
    (r'^(?P<url>.*)$', 'page'),
)

What happens is that whatever you put into the URL the pages app will try
and serve it.

So what you are saying is that I should be able to tell nginx to serve up
the file prior to handing off the request to django, is that about it?

It should be easy, nes't pas?





2009/5/19 James Bennett <ubernost...@gmail.com>

>
> On Tue, May 19, 2009 at 2:47 AM, Matt Davies <tonm...@gmail.com> wrote:
> > I've been asked to server up a crossdomain.xml file at the root of our
> web
> > sites so that another team of developers can access our data via Flash.
> > How do I set that up in the urls.py file?  I use one urls.py file for
> many
> > web sites so it would be far easier to put it in here.
> > I've got to this bit but can't think how I can tell the app to serve the
> doc
> > from the root folder
> > urlpatterns = patterns('',
> > (r'^crossdomain.xml', What goes in here?)
> > )
>
> You can set up some sort of override to tell your web server -- not
> Django -- to just serve up the file. Examples are available here:
>
> http://docs.djangoproject.com/en/dev/howto/deployment/modpython/#id1
>
> Or... I wrote an application recently that generates and serves
> cross-domain policy files for Flash. With the exception of the
> unit-test suite (which relies on a new-in-1.1 feature), it'll probably
> actually work on the version of Django you're using. You can grab the
> package to install here:
>
> http://pypi.python.org/pypi/django-flashpolicies/
>
> Or read the documentation (and source code) here:
>
> http://bitbucket.org/ubernostrum/django-flashpolicies/src/
>
>
> --
> "Bureaucrat Conrad, you are technically correct -- the best kind of
> correct."
>
> >
>

--~--~---------~--~----~------------~-------~--~----~
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 
django-users+unsubscr...@googlegroups.com
For more options, visit this group at 
http://groups.google.com/group/django-users?hl=en
-~----------~----~----~----~------~----~------~--~---

Reply via email to