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

Side by Side Diff: appengine/monorail/app.yaml

Issue 1868553004: Open Source Monorail (Closed) Base URL: https://chromium.googlesource.com/infra/infra.git@master
Patch Set: Rebase Created 4 years, 8 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 | « appengine/monorail/README.md ('k') | appengine/monorail/appengine_config.py » ('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 # Copyright 2016 The Chromium Authors. All rights reserved.
2 # Use of this source code is govered by a BSD-style
3 # license that can be found in the LICENSE file or at
4 # https://developers.google.com/open-source/licenses/bsd
5
6 application: monorail-staging
7 version: 2015-05-26
8 runtime: python27
9 api_version: 1
10 threadsafe: no
11
12 default_expiration: "3600d"
13
14 instance_class: F4
15 automatic_scaling:
16 min_idle_instances: 10
17 max_pending_latency: 0.2s
18
19 handlers:
20 - url: /_ah/spi/.*
21 script: monorailapp.endpoints
22
23 - url: /robots.txt
24 static_files: static/robots.txt
25 upload: static/robots.txt
26
27 - url: /database-maintenance
28 static_files: static/database-maintenance.html
29 upload: static/database-maintenance.html
30
31 - url: /static
32 static_dir: static
33
34 - url: /_ah/mail/.+
35 script: monorailapp.app
36 login: admin
37
38 - url: /_task/.*
39 script: monorailapp.app
40 login: admin
41
42 - url: /_cron/.*
43 script: monorailapp.app
44 login: admin
45
46 - url: /_backend/.*
47 script: monorailapp.app
48 login: admin
49
50 - url: /.*
51 script: monorailapp.app
52 secure: always
53
54 inbound_services:
55 - mail
56
57 libraries:
58 - name: endpoints
59 version: 1.0
60 - name: MySQLdb
61 version: "latest"
62 - name: pycrypto
63 version: "2.6"
64 - name: django
65 version: 1.4
66
67 includes:
68 - gae_ts_mon
OLDNEW
« no previous file with comments | « appengine/monorail/README.md ('k') | appengine/monorail/appengine_config.py » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698