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

Side by Side Diff: native_client_sdk/src/gonacl_appengine/app.yaml

Issue 884523002: Switch off secure redirect until we have a cert for gonacl.com (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 5 years, 11 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 | « no previous file | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 application: gonativeclient 1 application: gonativeclient
2 version: 2 2 version: 2
3 runtime: python27 3 runtime: python27
4 api_version: 1 4 api_version: 1
5 threadsafe: true 5 threadsafe: true
6 6
7 handlers: 7 handlers:
8 - url: /demo 8 - url: /demo
9 static_files: static/index.html 9 static_files: static/index.html
10 upload: static/index\.html 10 upload: static/index\.html
11 secure: always 11 secure: always
12 12
13 - url: /demo/.* 13 - url: /demo/.*
14 static_files: static/index.html 14 static_files: static/index.html
15 upload: static/index\.html 15 upload: static/index\.html
16 secure: always 16 secure: always
17 17
18 - url: /static/home/(.*) 18 - url: /static/home/(.*)
19 static_files: static/home/\1 19 static_files: static/home/\1
20 upload: static/home/.* 20 upload: static/home/.*
21 secure: always 21 secure: always
22 22
23 - url: /static 23 - url: /static
24 static_dir: static 24 static_dir: static
25 secure: always 25 secure: always
26 26
27 - url: /.* 27 - url: /.*
28 script: gonacl.application 28 script: gonacl.application
29 secure: always
30 29
31 skip_files: 30 skip_files:
32 - src/.* 31 - src/.*
OLDNEW
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698