-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathapp.yaml
57 lines (44 loc) · 863 Bytes
/
app.yaml
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
application: imakoko-iphone
version: 1
runtime: python27
api_version: 1
threadsafe: true
handlers:
- url: /api/.*
script: imakoko.app
- url: /account\.html
script: imakoko.app
secure: always
- url: /[^/]+\.html
script: imakoko.app
secure: never
- url: /twitter/.*
script: twitter.app
- url: /cron/.*
script: cron.app
login: admin
- url: /
static_files: index.html
upload: index\.html
- url: /m/.*
static_files: usermap.html
upload: usermap\.html
- url: /static
static_dir: static
- url: /img
static_dir: img
expiration: "7d"
- url: /favicon\.ico
static_files: favicon.ico
upload: favicon\.ico
mime_type: image/vnd.microsoft.icon
expiration: "7d"
- url: /robots\.txt
static_files: robots.txt
upload: robots\.txt
expiration: "7d"
- url: /.*
script: notfound.app
libraries:
- name: jinja2
version: latest