OLD | NEW |
1 # XSS and clickjacking prevention headers | 1 # XSS and clickjacking prevention headers |
2 | 2 |
3 set $csp_frame ""; | 3 set $csp_frame ""; |
4 if ($uri ~ ^/(:?\w\w(_\w\w)?/)?(?:index|firefox|chrome|opera|android|internet-ex
plorer|safari|yandex-browser|maxthon)?$|^/blog/) | 4 if ($uri ~ ^/(:?\w\w(_\w\w)?/)?(?:index|firefox|chrome|opera|android|internet-ex
plorer|safari|yandex-browser|maxthon)?$|^/blog/) |
5 { | 5 { |
6 set $csp_frame "; frame-src www.youtube-nocookie.com;"; | 6 set $csp_frame "; frame-src www.youtube-nocookie.com;"; |
7 } | 7 } |
8 add_header Content-Security-Policy "default-src 'self'; img-src * data:; style-s
rc 'self' 'unsafe-inline'; script-src 'self' 'unsafe-inline' 'unsafe-eval' $csp_
frame"; | 8 add_header Content-Security-Policy "default-src 'self'; img-src * data:; style-s
rc 'self' 'unsafe-inline'; script-src 'self' 'unsafe-inline' 'unsafe-eval' $csp_
frame"; |
9 add_header X-Frame-Options "sameorigin"; | 9 add_header X-Frame-Options "sameorigin"; |
10 | 10 |
(...skipping 72 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
83 | 83 |
84 rewrite ^/update.rdf$ https://update.adblockplus.org/gecko/update.rdf permanent; | 84 rewrite ^/update.rdf$ https://update.adblockplus.org/gecko/update.rdf permanent; |
85 rewrite ^/updates.plist$ https://update.adblockplus.org/adblockplussafari/update
s.plist permanent; | 85 rewrite ^/updates.plist$ https://update.adblockplus.org/adblockplussafari/update
s.plist permanent; |
86 rewrite ^/androidupdate.json$ https://update.adblockplus.org/adblockplusandroid/
update.json permanent; | 86 rewrite ^/androidupdate.json$ https://update.adblockplus.org/adblockplusandroid/
update.json permanent; |
87 rewrite ^/androidupdates.xml$ https://update.adblockplus.org/adblockplusandroid/
updates.xml permanent; | 87 rewrite ^/androidupdates.xml$ https://update.adblockplus.org/adblockplusandroid/
updates.xml permanent; |
88 rewrite ^/ieupdate.json$ https://update.adblockplus.org/adblockplusie/update.jso
n permanent; | 88 rewrite ^/ieupdate.json$ https://update.adblockplus.org/adblockplusie/update.jso
n permanent; |
89 | 89 |
90 rewrite ^/(\w\w(_\w\w)?/)?adblock-browser/?$ https://adblockbrowser.org/ permane
nt; | 90 rewrite ^/(\w\w(_\w\w)?/)?adblock-browser/?$ https://adblockbrowser.org/ permane
nt; |
91 rewrite ^/devbuilds/?$ https://adblockplus.org/development-builds permanent; | 91 rewrite ^/devbuilds/?$ https://adblockplus.org/development-builds permanent; |
92 | 92 |
| 93 # http://hub.eyeo.com/issues/12308 |
| 94 rewrite ^/poland/?$ /poland.html last; |
| 95 |
93 location /redirect | 96 location /redirect |
94 { | 97 { |
95 set $adblock_browser_android_download "https://downloads.adblockplus.org/adblo
ckbrowser-1.1.0-arm.apk"; | 98 set $adblock_browser_android_download "https://downloads.adblockplus.org/adblo
ckbrowser-1.1.0-arm.apk"; |
96 set $adblock_browser_android_store "https://play.google.com/store/apps/details
?id=org.adblockplus.browser"; | 99 set $adblock_browser_android_store "https://play.google.com/store/apps/details
?id=org.adblockplus.browser"; |
97 | 100 |
98 set $lang "en"; | 101 set $lang "en"; |
99 | 102 |
100 if ($arg_lang ~ ^(\w+)) | 103 if ($arg_lang ~ ^(\w+)) |
101 { | 104 { |
102 set $lang $1; | 105 set $lang $1; |
(...skipping 214 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
317 location /403.html | 320 location /403.html |
318 { | 321 { |
319 try_files $uri @proxied; | 322 try_files $uri @proxied; |
320 } | 323 } |
321 location @proxied | 324 location @proxied |
322 { | 325 { |
323 proxy_pass https://server16.adblockplus.org; | 326 proxy_pass https://server16.adblockplus.org; |
324 proxy_set_header Host adblockplus.org; | 327 proxy_set_header Host adblockplus.org; |
325 proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for; | 328 proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for; |
326 } | 329 } |
OLD | NEW |