forked from atosorigin/DevOpsMaturityAssessment
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathapp.yaml
38 lines (31 loc) · 851 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
runtime: php55
handlers:
# Serve images as static resources.
- url: /(.+\.(eot|svg|ttf|woff|woff2|css|js|gif|png|jpg|xml|ico|webmanifest))$
static_files: \1
upload: .+\.(eot|svg|ttf|woff|woff2|css|js|gif|png|jpg|xml|ico|webmanifest)$
# Serve php scripts.
- url: /
script: about.php
secure: always
redirect_http_response_code: 301
- url: /about
script: about.php
secure: always
redirect_http_response_code: 301
- url: /resources
script: viewResources.php
secure: always
redirect_http_response_code: 301
- url: /section-.*$
script: collectResponses.php
secure: always
redirect_http_response_code: 301
- url: /results.*$
script: viewResults.php
secure: always
redirect_http_response_code: 301
- url: /devops-maturity-csv.php
script: devops-maturity-csv.php
secure: always
redirect_http_response_code: 301