8000 Fixed broken app.yaml for angular sample (#692) · asndev/python-docs-samples@961aa1a · GitHub
[go: up one dir, main page]

Skip to content

Commit 961aa1a

Browse files
ryanmatsJon Wayne Parrott
authored and
Jon Wayne Parrott
committed
Fixed broken app.yaml for angular sample (GoogleCloudPlatform#692)
1 parent 7977ec9 commit 961aa1a

File tree

1 file changed

+6
-12
lines changed

1 file changed

+6
-12
lines changed

appengine/standard/angular/app.yaml

Lines changed: 6 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -1,21 +1,15 @@
1-
application: your-app-id
2-
version: 1
31
runtime: python27
42
threadsafe: true
53
api_version: 1
64

75
handlers:
8-
- url: /favicon\.ico
9-
static_files: favicon.ico
10-
upload: favicon\.ico
11-
126
- url: /rest/.*
137
script: main.APP
148

15-
- url: (.*)/
16-
static_files: app\1/index.html
17-
upload: app
9+
- url: /(.+)
10+
static_files: app/\1
11+
upload: app/.*
1812

19-
- url: (.*)
20-
static_files: app\1
21-
upload: app
13+
- url: /
14+
static_files: app/index.html
15+
upload: app/index.html

0 commit comments

Comments
 (0)
0