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

Delta Between Two Patch Sets: hiera/roles/web/adblockbrowser.yaml

Issue 29525555: #622 - Use mimeo module on abb website (Closed)
Left Patch Set: Created Aug. 23, 2017, 4:50 p.m.
Right Patch Set: For comment 10 Created Aug. 24, 2017, 8:01 p.m.
Left:
Right:
Use n/p to move between diff chunks; N/P to move between comments.
Jump to:
Left: Side by side diff | Download
Right: Side by side diff | Download
« no previous file with change/comment | « no previous file | modules/adblockplus/files/mimeo.py » ('j') | no next file with change/comment »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
LEFTRIGHT
1 classes: 1 classes:
2 adblockplus::web::mimeo: 2 adblockplus::web::mimeo:
3 format: $remote_addr - - [$time_local] "$request" $status $bytes_sent "$http _referer" "$http_user_agent" "$http_x_forwarded_for" $http_scheme "$http_accept_ language" "$http_host" "$http_x_client_id" $http_content_length "$http_content_t ype" $http_request_body 3 format: $remote_addr - - [$time_local] "$request" $status $bytes_sent "$http _referer" "$http_user_agent" "$http_x_forwarded_for" - "$http_accept_language" " $http_host" "$http_x_client_id" $http_content_length "$http_content_type" $reque st_body
4 response: All good, carry on! 4 response: All good, carry on!
5 port: 8000 5 port: 8000
6 web::server: 6 web::server:
7 vhost: adblockbrowser.org 7 vhost: adblockbrowser.org
8 aliases: 8 aliases:
9 - www.adblockbrowser.org 9 - www.adblockbrowser.org
10 is_default: true 10 is_default: true
11 custom_config: | 11 custom_config: |
12 location /submit-feedback { 12 location /submit-feedback {
13 proxy_pass http://127.0.0.1:8000; 13 proxy_pass http://127.0.0.1:8000;
14 proxy_set_header User-Agent $http_user_agent; 14 proxy_set_header User-Agent $http_user_agent;
15 proxy_set_header Referer $http_referer; 15 proxy_set_header Referer $http_referer;
16 proxy_set_header X-Forwarded-For $http_x_forwarded_for; 16 proxy_set_header X-Forwarded-For $http_x_forwarded_for;
17 proxy_set_header Scheme $scheme;
mathias 2017/08/23 16:54:42 That's neither necessary nor a valid header.
f.lopez 2017/08/24 18:16:59 Done.
18 proxy_set_header Accept-Language $http_accept_language; 17 proxy_set_header Accept-Language $http_accept_language;
19 proxy_set_header Host $http_host; 18 proxy_set_header Host $http_host;
20 proxy_set_header X-Client-Id $http_x_client_id; 19 proxy_set_header X-Client-Id $http_x_client_id;
21 proxy_set_header Request-Body $request_body;
mathias 2017/08/23 16:54:42 That's neither thought through nor a valid header.
f.lopez 2017/08/24 18:16:59 Done.
22 } 20 }
23 repository: web.adblockbrowser.org 21 repository: web.adblockbrowser.org
24 multiplexer_locations: 22 multiplexer_locations:
25 - /sendInstallationLink 23 - /sendInstallationLink
26 24
27 logrotate::config: 25 logrotate::config:
28 mimeo_data:
29 content: |
30 /var/adblockplus/mimeo/data {
31 weekly
32 rotate 30
33 compress
34 missingok
35 nodateext
36 }
37 ensure: 'present'
38 adblockbrowser_feedback_data: 26 adblockbrowser_feedback_data:
39 content: | 27 content: |
40 /var/log/nginx/adblockbrowser_feedback { 28 /var/log/nginx/adblockbrowser_feedback {
41 daily 29 daily
42 rotate 30 30 rotate 30
43 compress 31 compress
44 missingok 32 missingok
45 nodateext 33 nodateext
46 sharedscripts 34 sharedscripts
47 postrotate 35 postrotate
48 [ ! -f /var/run/nginx.pid ] || kill -USR1 `cat /var/run/nginx.pid` 36 [ ! -f /var/run/nginx.pid ] || kill -USR1 `cat /var/run/nginx.pid`
49 endscript 37 endscript
50 } 38 }
51 ensure: 'present' 39 ensure: 'present'
52 40
53 sitescripts::configfragments: 41 sitescripts::configfragments:
54 installation_link: 42 installation_link:
55 content: | 43 content: |
56 [DEFAULT] 44 [DEFAULT]
57 mailer=/usr/sbin/sendmail 45 mailer=/usr/sbin/sendmail
58 [multiplexer] 46 [multiplexer]
59 sitescripts.send_installation_link.web.send_installation_link = 47 sitescripts.send_installation_link.web.send_installation_link =
60 [send_installation_link] 48 [send_installation_link]
61 email_template=send_installation_link/template/adblockbrowser_installation _link.tmpl 49 email_template=send_installation_link/template/adblockbrowser_installation _link.tmpl
62 50
LEFTRIGHT

Powered by Google App Engine
This is Rietveld