I have setup a simple app.yaml file:

application: x
version: 1
runtime: python
api_version: 1

handlers:
- url: /downloads/(.*)
  static_files: downloads/\1
  upload: downloads/(.*\.(zip|txt|gif|png|jpg))

- url: /.*
  script: xxx.py

Which allows me to go to http://localhost:8080/downloads and
get .txt,.doc etc files. but when I try to access a .zip file I get an
error 403 and am told I need to login. Is there something special
about ZIP files?

--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups 
"Google App Engine" group.
To post to this group, send email to google-appengine@googlegroups.com
To unsubscribe from this group, send email to [EMAIL PROTECTED]
For more options, visit this group at 
http://groups.google.com/group/google-appengine?hl=en
-~----------~----~----~----~------~----~------~--~---

Reply via email to