-
Notifications
You must be signed in to change notification settings - Fork 0
/
app.yaml
53 lines (43 loc) · 887 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
application: um-schedule
version: 1
runtime: php55
api_version: 1
threadsafe: yes
handlers:
- url: /favicon\.ico
static_files: favicon.ico
upload: favicon\.ico
secure: always
- url: /
static_files: index.html
upload: index\.html
secure: always
- url: /fall
script: main.php
secure: always
- url: /winter
script: main.php
secure: always
- url: /script\.js
static_files: script.js
upload: script\.js
secure: always
- url: /style\.css
static_files: style.css
upload: style\.css
secure: always
- url: /sprite\.png
static_files: sprite.png
upload: sprite\.png
secure: always
- url: /fall\.png
static_files: fall.png
upload: fall\.png
secure: always
- url: /winter\.png
static_files: winter.png
upload: winter\.png
secure: always
- url: /.*
script: 404.php
secure: always