Index: modules/adblockplusorg/files/adblockplus.org |
=================================================================== |
deleted file mode 100644 |
--- a/modules/adblockplusorg/files/adblockplus.org |
+++ /dev/null |
@@ -1,127 +0,0 @@ |
-server { |
- root /var/www/adblockplus.org/httpdocs; |
- |
- location / { |
- index index.php index index.html; |
- |
- if ($arg_a = "view") { |
- rewrite ^(.*) $1? permanent; |
- } |
- |
- set $preferredLang en; |
- if ($http_accept_language ~ ^(\w\w)\b) { |
- set $preferredLang $1; |
- } |
- if (!-f $document_root/static/$preferredLang/index) { |
- set $preferredLang en; |
- } |
- |
- set $user_agent ""; |
- if ($http_user_agent ~ \bGecko/\d+) { |
- set $user_agent "firefox"; |
- } |
- if ($http_user_agent ~ \bChrome/\d+) { |
- set $user_agent "chrome"; |
- } |
- if ($http_user_agent ~ \bPresto/\d+) { |
- set $user_agent "opera"; |
- } |
- if ($http_user_agent ~ \bAndroid\s.*\bAppleWebKit/\d+) { |
- set $user_agent "android"; |
- } |
- |
- set $platform "firefox"; |
- if ($user_agent) { |
- set $platform $user_agent; |
- } |
- |
- if ($arg_a ~ ^(view|show)?$) { |
- rewrite ^/(index\.html)?$ /$preferredLang/$platform redirect; |
- rewrite ^/(\w\w(_\w\w)?)/?$ /$1/$platform redirect; |
- } |
- |
- rewrite ^/(\w\w(_\w\w)?)/installation$ /$1/ permanent; |
- rewrite ^/anwiki/(.*) /$1 permanent; |
- |
- if (-f $request_filename) { |
- break; |
- } |
- if (-d $request_filename) { |
- break; |
- } |
- |
- set $static_uri $uri; |
- if ($uri ~ ^/(\w\w(_\w\w)?)/(firefox|chrome|opera|android)/?$) { |
- set $static_uri "/$1/"; |
- set $platform $3; |
- } |
- set $static ""; |
- if (-f "$document_root/static$static_uri") { |
- set $static "ok"; |
- } |
- if (-f "$document_root/static$static_uri/index") { |
- set $static "ok"; |
- } |
- set $static "$static!$arg_a!$cookie_anwiki_anwsesscode"; |
- if ($static ~ ^ok!(view|show)?!$) { |
- rewrite ^ /static$static_uri?platform=$platform&user_agent=$user_agent last; |
- } |
- |
- rewrite ^/(\w\w(_\w\w)?)/(firefox|chrome|opera|android)/?$ /index.php?p=$1&platform=$3&user_agent=$user_agent last; |
- rewrite ^/(.*) /index.php?p=$1 last; |
- } |
- |
- location /static/ { |
- index index; |
- internal; |
- types { |
- image/png png; |
- text/xml xml; |
- text/css css; |
- } |
- default_type text/html; |
- charset utf-8; |
- |
- set $platform_class ''; |
- if ($arg_platform) { |
- set $platform_class ' class="$arg_platform ua-$arg_user_agent"'; |
- } |
- sub_filter ' id="content"' ' id="content"$platform_class'; |
- } |
- |
- |
- location ~ \.php$ { |
- client_max_body_size 8m; |
- |
- set $platform_class ''; |
- if ($arg_platform) { |
- set $platform_class ' class="$arg_platform ua-$arg_user_agent"'; |
- } |
- sub_filter ' id="content"' ' id="content"$platform_class'; |
- |
- fastcgi_pass unix:/tmp/php-fastcgi.sock; |
- fastcgi_index index.php; |
- |
- fastcgi_param SCRIPT_FILENAME /var/www/adblockplus.org/phproot$fastcgi_script_name; |
- |
- fastcgi_param QUERY_STRING $query_string; |
- fastcgi_param REQUEST_METHOD $request_method; |
- fastcgi_param CONTENT_TYPE $content_type; |
- fastcgi_param CONTENT_LENGTH $content_length; |
- |
- fastcgi_param SCRIPT_NAME $fastcgi_script_name; |
- fastcgi_param REQUEST_URI $request_uri; |
- fastcgi_param DOCUMENT_URI $document_uri; |
- fastcgi_param DOCUMENT_ROOT $document_root; |
- fastcgi_param SERVER_PROTOCOL $server_protocol; |
- |
- fastcgi_param GATEWAY_INTERFACE CGI/1.1; |
- fastcgi_param SERVER_SOFTWARE nginx/$nginx_version; |
- |
- fastcgi_param REMOTE_ADDR $remote_addr; |
- fastcgi_param REMOTE_PORT $remote_port; |
- fastcgi_param SERVER_ADDR $server_addr; |
- fastcgi_param SERVER_PORT $server_port; |
- fastcgi_param SERVER_NAME $server_name; |
- } |
-} |