-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathapp.yaml
More file actions
69 lines (54 loc) · 1.21 KB
/
app.yaml
File metadata and controls
69 lines (54 loc) · 1.21 KB
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
application: ae-python
version: 4
runtime: python27
api_version: 1
default_expiration: "1d"
threadsafe: yes
handlers:
### Static Routes
- url: /static/images/favicon\.ico
static_files: static/images/favicon.ico
upload: static/images/favicon\.ico
mime_type: image/vnd.microsoft.icon
- url: /favicon\.ico
static_files: static/images/favicon.ico
upload: static/images/favicon\.ico
mime_type: image/vnd.microsoft.icon
- url: /robots.txt
static_files: robots.txt
upload: robots.txt
- url: /(.*\.(gif|png|jpg))
static_files: \1
upload: (.*\.(gif|png|jpg))
- url: /static/css
static_dir: static/css
- url: /static/js
static_dir: static/js
# Google Web Master Verification
- url: /google4022cd472d983097.html
static_files: static/html/google4022cd472d983097.html
upload: static/html/google4022cd472d983097.html
### Dyanamic Routes
- url: /admin
script: main.app
secure: always
- url: /infoadmin
script: main.app
secure: always
- url: /infomsg
script: main.app
secure: always
- url: /login
script: main.app
secure: always
- url: /profile
script: main.app
secure: always
- url: /.*
script: main.app
secure: optional
inbound_services:
- mail
libraries:
- name: webapp2
version: latest