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

Side by Side Diff: skfe/sys/skia_org

Issue 819473004: Set up the nginx servers for handling *.skia.org traffic. (Closed) Base URL: https://skia.googlesource.com/buildbot@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 | « skfe/sys/nginx_monit ('k') | 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
(Empty)
1 server {
2 listen 80;
3 server_name skiadev.org www.skiadev.org;
tfarina 2015/01/10 18:28:52 do we need access_log and error_log?
jcgregorio 2015/01/12 12:25:03 The default behavior is fine.
4
tfarina 2015/01/10 18:28:52 where is the ssl protection configuration? I know
jcgregorio 2015/01/12 12:25:03 SSL config will be done later once these servers s
5 proxy_connect_timeout 5m;
6 proxy_send_timeout 5m;
7 proxy_read_timeout 5m;
8 send_timeout 5m;
9
10 location / {
11 proxy_pass http://skia-docs:8000;
12 }
13 }
14
15 server {
16 listen 80;
17 server_name perf.skiadev.org;
18
19 proxy_connect_timeout 5m;
20 proxy_send_timeout 5m;
21 proxy_read_timeout 5m;
22 send_timeout 5m;
23
24 location / {
25 proxy_pass http://skia-testing-b:8000;
26 }
27 }
28
29 server {
30 listen 80;
31 server_name gold.skiadev.org;
32
33 proxy_connect_timeout 5m;
34 proxy_send_timeout 5m;
35 proxy_read_timeout 5m;
36 send_timeout 5m;
37
38 location / {
39 proxy_pass http://skia-testing-b:8001;
40 }
41 }
42
43 server {
44 listen 80;
45 server_name alerts.skiadev.org;
46
47 proxy_connect_timeout 5m;
48 proxy_send_timeout 5m;
49 proxy_read_timeout 5m;
50 send_timeout 5m;
51
52 location / {
53 proxy_pass http://skia-monitoring:8001;
54 }
55 }
56
57 server {
58 listen 80;
59 server_name monitor.skiadev.org;
60
61 proxy_connect_timeout 5m;
62 proxy_send_timeout 5m;
63 proxy_read_timeout 5m;
64 send_timeout 5m;
65
66 location / {
67 proxy_pass http://skia-monitoring:8000;
68 }
69 }
70
71 server {
72 listen 80;
73 server_name push.skiadev.org;
74
75 proxy_connect_timeout 5m;
76 proxy_send_timeout 5m;
77 proxy_read_timeout 5m;
78 send_timeout 5m;
79
80 location / {
81 proxy_pass http://skia-push:8000;
82 }
83 }
84
OLDNEW
« no previous file with comments | « skfe/sys/nginx_monit ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698