allow history to work in webkit browsers
[gae-samples.git] / multi-chat / app.yaml
blobd8728e2659b7e9658f15b57a0039955f8a4481c9
1 application: multi-chat
2 version: 1
3 runtime: python
4 api_version: 1
6 inbound_services:
7 - xmpp_message
9 handlers:
10 - url: /?
11   script: controllers/index.py
12 - url: /_ah/xmpp/message/chat/
13   script: controllers/xmpp.py
14 - url: /(transcript)/.*
15   script: controllers/\1.py
16 - url: /(task)/.*
17   script: controllers/\1.py
18   login: admin
19 - url: /static
20   static_dir: static
21   expiration: 1d
22 - url: /(favicon\.ico)
23   static_files: static/\1
24   upload: static/.*