OLD | NEW |
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 Loading... |
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 |
OLD | NEW |