/usr/share/doc/jsonbot/examples/app.yaml.example is in jsonbot 0.84.4-1.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
| 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 | # JSONBOT application file
#
#
application: jsonbot
version: 1
runtime: python
api_version: 1
default_expiration: "1s"
handlers:
- url: /_ah/warmup
  script: handler_warmup.py
- url: /_ah/start
  script: handler_start.py
- url: /
  script: handler_web.py
  secure: always
  login: required
- url: /_ah/assets/(.*)
  static_files: assets/\1
  upload: assets/(.*)
- url: /_ah/login.*
  script: handler_openid.py
- url: /_ah/queue/deferred
  script: $PYTHON_LIB/google/appengine/ext/deferred/deferred.py
  login: admin
- url: /_ah/channel/.*
  script: handler_channel.py
  login: admin
- url: /stats.*
  script: $PYTHON_LIB/google/appengine/ext/appstats/ui.py
  login: admin
- url: /tasks.*
  script: handler_task.py
  login: admin
  secure: always
- url: /assets/(.*)
  static_files: assets/\1
  upload: assets/(.*)
- url: /_wave.*
  script: handler_wave.py
- url: /_ah/xmpp/.*
  script: handler_xmpp.py
- url: /hubbub(.*)
  script: handler_hubbub.py
- url: /assets/(.*)
  static_dir: /assets/
- url: /dispatch.*
  script: handler_dispatch.py
  login: required
- url: /demo.*
  script: handler_demo.py
- url: /feeds.*
  script: handler_web.py
- url: /docs/html/(.*)
  static_files: docs/html/\1
  upload: docs/html/(.*)
- url: /docs.*
  script: handler_docs.py
- url: /(.*\.xml)  
  static_files: gadgets/\1
  upload: gadgets/(.*\.xml)
- url: /_static/(.*)
  static_files: assets/\1
  upload: assets/(.*)
- url: /favicon.ico
  static_files: assets/favicon.ico
  upload: assets/favicon.ico
inbound_services:
- warmup
- xmpp_message   
- channel_presence
 |