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

Side by Side Diff: skfe/sys/skia_org_nginx

Issue 1346433002: Add codesearch.skia.org and cs.skia.org as redirects to Chromium code search. (Closed) Base URL: https://skia.googlesource.com/buildbot@master
Patch Set: Remove codesearch.skia.org. Created 5 years, 3 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_ciphers 'AES128+EECDH:AES128+EDH'; 2 ssl_ciphers 'AES128+EECDH:AES128+EDH';
3 ssl_session_cache shared:SSL:10m; 3 ssl_session_cache shared:SSL:10m;
4 4
5 ssl_certificate /etc/nginx/ssl/skia_org.pem; 5 ssl_certificate /etc/nginx/ssl/skia_org.pem;
6 ssl_certificate_key /etc/nginx/ssl/skia_org.key; 6 ssl_certificate_key /etc/nginx/ssl/skia_org.key;
7 7
8 proxy_connect_timeout 5m; 8 proxy_connect_timeout 5m;
9 proxy_send_timeout 5m; 9 proxy_send_timeout 5m;
10 proxy_read_timeout 5m; 10 proxy_read_timeout 5m;
(...skipping 405 matching lines...) Expand 10 before | Expand all | Expand 10 after
416 server_name internal.skia.org; 416 server_name internal.skia.org;
417 return 301 https://internal.skia.org$request_uri; 417 return 301 https://internal.skia.org$request_uri;
418 } 418 }
419 419
420 420
421 server { 421 server {
422 listen 80; 422 listen 80;
423 server_name bugchomper.skia.org; 423 server_name bugchomper.skia.org;
424 return 301 https://bugchomper.skia.org$request_uri; 424 return 301 https://bugchomper.skia.org$request_uri;
425 } 425 }
426
427 ##### cs.skia.org (REDIRECT) ###########################
428 server {
429 listen 443;
430
431 ssl on;
432
433 access_log /var/log/nginx/cs.access.log;
434 error_log /var/log/nginx/cs.error.log error;
435
436 server_name cs.skia.org;
437 rewrite ^/(.*)$ https://code.google.com/p/chromium/codesearch#search/&q=$1%2 0file:%5Esrc/third_party/skia/ redirect;
438 rewrite ^ https://code.google.com/p/chromium/codesearch#chromium/src/third_p arty/skia/ redirect;
439 }
440
441 server {
442 listen 80;
443 server_name cs.skia.org;
444 rewrite ^/(.*)$ https://code.google.com/p/chromium/codesearch#search/&q=$1%2 0file:%5Esrc/third_party/skia/ redirect;
445 rewrite ^ https://code.google.com/p/chromium/codesearch#chromium/src/third_p arty/skia/ redirect;
446 }
447
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