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

Side by Side Diff: skfe/sys/skia_org_nginx

Issue 969533005: Add fiddle-staging (Closed) Base URL: https://skia.googlesource.com/buildbot@master
Patch Set: Created 5 years, 9 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 1
2 ssl_protocols TLSv1 TLSv1.1 TLSv1.2; 2 ssl_protocols TLSv1 TLSv1.1 TLSv1.2;
3 ssl_ciphers 'AES128+EECDH:AES128+EDH'; 3 ssl_ciphers 'AES128+EECDH:AES128+EDH';
4 ssl_prefer_server_ciphers on; 4 ssl_prefer_server_ciphers on;
5 ssl_session_cache shared:SSL:10m; 5 ssl_session_cache shared:SSL:10m;
6 6
7 ssl_certificate /etc/nginx/ssl/skia_org.pem; 7 ssl_certificate /etc/nginx/ssl/skia_org.pem;
8 ssl_certificate_key /etc/nginx/ssl/skia_org.key; 8 ssl_certificate_key /etc/nginx/ssl/skia_org.key;
9 9
10 proxy_connect_timeout 5m; 10 proxy_connect_timeout 5m;
(...skipping 164 matching lines...) Expand 10 before | Expand all | Expand 10 after
175 location / { 175 location / {
176 proxy_pass http://skia-webtry-b:8000; 176 proxy_pass http://skia-webtry-b:8000;
177 } 177 }
178 } 178 }
179 server { 179 server {
180 listen 80; 180 listen 80;
181 server_name fiddle.skia.org; 181 server_name fiddle.skia.org;
182 return 301 https://fiddle.skia.org$request_uri; 182 return 301 https://fiddle.skia.org$request_uri;
183 } 183 }
184 184
185 ##### fiddle-staging.skia.org ###########################
186 server {
187 listen 443;
188 server_name fiddle-staging.skia.org;
189
190 ssl on;
191
192 location / {
193 proxy_pass http://skia-webtry-test:8000;
194 }
195 }
196 server {
197 listen 80;
198 server_name fiddle-staging.skia.org;
199 return 301 https://fiddle-staging.skia.org$request_uri;
200 }
201
185 #### health.skia.org ################ 202 #### health.skia.org ################
186 # Just return empty 200 responses for network load balancing health checks. 203 # Just return empty 200 responses for network load balancing health checks.
187 # See https://cloud.google.com/compute/docs/load-balancing/health-checks 204 # See https://cloud.google.com/compute/docs/load-balancing/health-checks
188 server { 205 server {
189 listen 80; 206 listen 80;
190 server_name health.skia.org; 207 server_name health.skia.org;
191 location / { 208 location / {
192 return 200; 209 return 200;
193 } 210 }
194 } 211 }
(...skipping 48 matching lines...) Expand 10 before | Expand all | Expand 10 after
243 rewrite ^ https://skia-tree-status.appspot.com/skia-telemetry/chromium_try r edirect; 260 rewrite ^ https://skia-tree-status.appspot.com/skia-telemetry/chromium_try r edirect;
244 } 261 }
245 262
246 ##### skbug.com (REDIRECT) ########################### 263 ##### skbug.com (REDIRECT) ###########################
247 server { 264 server {
248 listen 80; 265 listen 80;
249 server_name skbug.com; 266 server_name skbug.com;
250 rewrite ^/([0-9]+)$ https://code.google.com/p/skia/issues/detail?id=$1 redir ect; 267 rewrite ^/([0-9]+)$ https://code.google.com/p/skia/issues/detail?id=$1 redir ect;
251 rewrite ^ https://code.google.com/p/skia/issues/list redirect; 268 rewrite ^ https://code.google.com/p/skia/issues/list redirect;
252 } 269 }
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