OLD | NEW |
1 classes: | 1 classes: |
| 2 adblockplus::web::mimeo: |
| 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! |
| 5 port: 8000 |
2 web::server: | 6 web::server: |
3 vhost: adblockbrowser.org | 7 vhost: adblockbrowser.org |
4 aliases: | 8 aliases: |
5 - www.adblockbrowser.org | 9 - www.adblockbrowser.org |
6 is_default: true | 10 is_default: true |
7 custom_config: | | 11 custom_config: | |
8 location = /submit-feedback/ { | 12 location /submit-feedback { |
9 access_log /var/log/nginx/adblockbrowser_feedback data; | 13 proxy_pass http://127.0.0.1:8000; |
10 echo_read_request_body; | 14 proxy_set_header User-Agent $http_user_agent; |
| 15 proxy_set_header Referer $http_referer; |
| 16 proxy_set_header X-Forwarded-For $http_x_forwarded_for; |
| 17 proxy_set_header Accept-Language $http_accept_language; |
| 18 proxy_set_header Host $http_host; |
| 19 proxy_set_header X-Client-Id $http_x_client_id; |
11 } | 20 } |
12 repository: web.adblockbrowser.org | 21 repository: web.adblockbrowser.org |
13 multiplexer_locations: | 22 multiplexer_locations: |
14 - /sendInstallationLink | 23 - /sendInstallationLink |
15 | 24 |
16 logrotate::config: | 25 logrotate::config: |
17 adblockbrowser_feedback_data: | 26 adblockbrowser_feedback_data: |
18 content: | | 27 content: | |
19 /var/log/nginx/adblockbrowser_feedback { | 28 /var/log/nginx/adblockbrowser_feedback { |
20 daily | 29 daily |
(...skipping 11 matching lines...) Expand all Loading... |
32 sitescripts::configfragments: | 41 sitescripts::configfragments: |
33 installation_link: | 42 installation_link: |
34 content: | | 43 content: | |
35 [DEFAULT] | 44 [DEFAULT] |
36 mailer=/usr/sbin/sendmail | 45 mailer=/usr/sbin/sendmail |
37 [multiplexer] | 46 [multiplexer] |
38 sitescripts.send_installation_link.web.send_installation_link = | 47 sitescripts.send_installation_link.web.send_installation_link = |
39 [send_installation_link] | 48 [send_installation_link] |
40 email_template=send_installation_link/template/adblockbrowser_installation
_link.tmpl | 49 email_template=send_installation_link/template/adblockbrowser_installation
_link.tmpl |
41 | 50 |
OLD | NEW |