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

Side by Side Diff: skfe/sys/skia_org_nginx

Issue 1314133003: internal: setup skfe internal.skia.org (Closed) Base URL: https://skia.googlesource.com/buildbot@master
Patch Set: clean 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_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 429 matching lines...) Expand 10 before | Expand all | Expand 10 after
440 error_log /var/log/nginx/bugchomper.error.log error; 440 error_log /var/log/nginx/bugchomper.error.log error;
441 441
442 if ( $host != 'bugchomper.skia.org' ) { 442 if ( $host != 'bugchomper.skia.org' ) {
443 rewrite ^/(.*)$ https://bugchomper.skia.org/$1 permanent; 443 rewrite ^/(.*)$ https://bugchomper.skia.org/$1 permanent;
444 } 444 }
445 445
446 location / { 446 location / {
447 proxy_pass http://skia-bugchomper:8050; 447 proxy_pass http://skia-bugchomper:8050;
448 } 448 }
449 } 449 }
450
451 ##### internal.skia.org ###########################
452 server {
453 listen 443;
454 server_name internal.skia.org;
455
456 access_log /var/log/nginx/internal.access.log;
457 error_log /var/log/nginx/internal.error.log error;
458
459 ssl on;
460
461 location / {
462 proxy_pass http://skia-internal:8000;
463 }
464 }
465
466 server {
467 listen 80;
468 server_name internal.skia.org;
469 return 301 https://internal.skia.org$request_uri;
470 }
471
472
450 server { 473 server {
451 listen 80; 474 listen 80;
452 server_name bugchomper.skia.org; 475 server_name bugchomper.skia.org;
453 return 301 https://bugchomper.skia.org$request_uri; 476 return 301 https://bugchomper.skia.org$request_uri;
454 } 477 }
455 478
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