Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(23)

Side by Side Diff: milo/frontend/app.yaml

Issue 2953183002: Fix milo deployment (Closed)
Patch Set: License header fix Created 3 years, 6 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « milo/Makefile ('k') | milo/frontend/appengine/app.yaml » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
(Empty)
1 runtime: go
2 api_version: go1
3 service: default
4
5 instance_class: F4_1G
6
7 handlers:
8 # For static resources such as css and js files.
9 - url: /static
10 secure: always
11 static_dir: static
12
13 # For sideloading data for testing and development.
14 - url: /_ah/remote_api
15 script: _go_app
16
17 # For admin resources or endpoints meant to be hit by a cron job.
18 - url: /admin/.*
19 script: _go_app
20 secure: always
21 login: admin
22
23 # Pubsub Handler. This is strictly necessary because the default module
24 # contains a /.* routing rule, so if it was targetted directly, we still want
25 # login:admin to apply.
26 - url: /_ah/push-handlers/.*
27 script: _go_app
28 secure: always
29 login: admin
30
31 # Everything goes here.
32 - url: /.*
33 script: _go_app
34 secure: always
35
36 builtins:
37 - remote_api: on
38
39 includes:
40 - static
41
42 inbound_services:
43 - warmup
OLDNEW
« no previous file with comments | « milo/Makefile ('k') | milo/frontend/appengine/app.yaml » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698