-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathapp.yaml
More file actions
42 lines (32 loc) · 682 Bytes
/
app.yaml
File metadata and controls
42 lines (32 loc) · 682 Bytes
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
application: fbvideo-download
version: 2
runtime: php55
api_version: 1
threadsafe: yes
handlers:
- url: /favicon\.ico
static_files: favicon.ico
upload: favicon\.ico
- url: /main.php
script: main.php
- url: /co.php
script: co.php
- url: /(.*\.js)
mime_type: text/javascript
static_files: static/\1
upload: static/(.*\.js)
- url: /(.*\.css)
mime_type: text/css
static_files: static/\1
upload: static/(.*\.css)
- url: /(.*\.(ico|jpg|png|gif))$
static_files: static/\1
upload: static/.*\.(ico|jpg|png|gif)$
- url: /
script: index.php
- url: /private.php
script: private.php
- url: /test.php
script: test.php
- url: /index.php
script: index.php