Rietveld Code Review Tool
Help | Bug tracker | Discussion group | Source code

Side by Side Diff: modules/updateserver/files/site.conf

Issue 5734493784637440: Issue 245 - Unify SSL configuration for all servers (Closed)
Patch Set: Created April 2, 2014, 2:05 p.m.
Left:
Right:
Use n/p to move between diff chunks; N/P to move between comments.
Jump to:
View unified diff | Download patch
OLDNEW
1 server { 1 error_page 500 502 503 504 /50x.html;
2 listen 80 default_server; 2 location = /50x.html {
3 listen [::]:80 default_server; 3 root html;
4 server_name update.adblockplus.org;
5 location / {
6 rewrite (.*) https://update.adblockplus.org$1 permanent;
7 }
8 } 4 }
9 5
10 server { 6 keepalive_timeout 0;
11 listen 443 ssl default_server; 7 root /var/www/update;
12 listen [::]:443 ssl default_server;
13 server_name update.adblockplus.org;
14 ssl_certificate sites-available/adblockplus.org_sslcert.pem;
15 ssl_certificate_key sites-available/adblockplus.org_sslcert.key;
16
17 error_page 500 502 503 504 /50x.html;
18 location = /50x.html {
19 root html;
20 }
21
22 access_log /var/log/nginx/access_log_update main;
23 keepalive_timeout 0;
24 root /var/www/update;
25 }
OLDNEW

Powered by Google App Engine
This is Rietveld