Initial commit.
This commit is contained in:
1
nginx/.htpasswd
Normal file
1
nginx/.htpasswd
Normal file
@@ -0,0 +1 @@
|
||||
bogdan:$apr1$yFsXOZhU$q5rCGmqOyfKXzsex.qVVF.
|
||||
1
nginx/.passwd-madalin
Normal file
1
nginx/.passwd-madalin
Normal file
@@ -0,0 +1 @@
|
||||
madalin:$apr1$sWaygcuQ$SB/HET1KKphXoS2SgfkIo0
|
||||
16
nginx/conf.d/anywhere.ro.conf
Normal file
16
nginx/conf.d/anywhere.ro.conf
Normal file
@@ -0,0 +1,16 @@
|
||||
server {
|
||||
listen 192.168.1.2:80;
|
||||
server_name anywhere.ro;
|
||||
charset utf-8;
|
||||
root /var/www/html/vhosts/anywhere.ro;
|
||||
index index.php index.html index.htm;
|
||||
|
||||
access_log /var/log/nginx/anywhere.ro.access.log;
|
||||
error_log /var/log/nginx/anywhere.ro.error.log;
|
||||
|
||||
location / {
|
||||
auth_basic "Continut restrictionat!";
|
||||
auth_basic_user_file /etc/nginx/.passwd-madalin;
|
||||
autoindex on;
|
||||
}
|
||||
}
|
||||
19
nginx/conf.d/blank.conf
Normal file
19
nginx/conf.d/blank.conf
Normal file
@@ -0,0 +1,19 @@
|
||||
upstream php-blank {
|
||||
server unix:/var/run/php-fpm.sock fail_timeout=0;
|
||||
}
|
||||
|
||||
server {
|
||||
listen 192.168.1.2:80;
|
||||
server_name 192.168.1.2;
|
||||
|
||||
location ~ ^/(status|fpm-status|ping)$ {
|
||||
access_log off;
|
||||
allow 127.0.0.1;
|
||||
allow 192.168.1.2;
|
||||
allow 10.208.1.202;
|
||||
deny all;
|
||||
include fastcgi.conf;
|
||||
fastcgi_pass php-blank;
|
||||
}
|
||||
|
||||
}
|
||||
52
nginx/conf.d/club3d.ro.conf
Normal file
52
nginx/conf.d/club3d.ro.conf
Normal file
@@ -0,0 +1,52 @@
|
||||
server {
|
||||
listen 192.168.1.2:80;
|
||||
server_name club3d.ro www.club3d.ro www.123.club3d.ro www.456.club3d.ro 123.club3d.ro 456.club3d.ro;
|
||||
charset utf-8;
|
||||
root /var/www/html/vhosts/club3d.ro/;
|
||||
index index.php index.html index.htm;
|
||||
|
||||
access_log /var/log/nginx/club3d.ro.access.log;
|
||||
error_log /var/log/nginx/club3d.ro.error.log;
|
||||
|
||||
location ~* \.php$ {
|
||||
fastcgi_split_path_info ^(.+\.php)(/.+)$;
|
||||
include fastcgi_params;
|
||||
fastcgi_pass unix:/var/run/php-fpm.sock;
|
||||
fastcgi_index index.php;
|
||||
fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name;
|
||||
fastcgi_buffer_size 16k;
|
||||
fastcgi_buffers 4 16k;
|
||||
}
|
||||
|
||||
|
||||
location /madalin {
|
||||
autoindex on;
|
||||
}
|
||||
|
||||
location /glibc {
|
||||
autoindex on;
|
||||
}
|
||||
|
||||
# gzip should not be used with SSL
|
||||
gzip off;
|
||||
|
||||
location /sgwi {
|
||||
auth_basic "Private Zone";
|
||||
auth_basic_user_file /etc/nginx/.htpasswd;
|
||||
}
|
||||
|
||||
listen 192.168.1.2:443 ssl http2; # managed by Certbot
|
||||
ssl_certificate /etc/letsencrypt/live/club3d.ro-0001/fullchain.pem; # managed by Certbot
|
||||
ssl_certificate_key /etc/letsencrypt/live/club3d.ro-0001/privkey.pem; # managed by Certbot
|
||||
include /etc/letsencrypt/options-ssl-nginx.conf; # managed by Certbot
|
||||
|
||||
### redirect
|
||||
if ($scheme != "https") {
|
||||
return 301 https://$host$request_uri;
|
||||
} # managed by Certbot
|
||||
|
||||
if ($host ~* ~^www\..+\.club3d.ro\.ro$) {
|
||||
return 301 $scheme://+\/club3d.ro$request_uri;
|
||||
}
|
||||
|
||||
}
|
||||
39
nginx/conf.d/default.conf
Normal file
39
nginx/conf.d/default.conf
Normal file
@@ -0,0 +1,39 @@
|
||||
upstream php-default {
|
||||
server unix:/var/run/php-fpm.sock fail_timeout=0;
|
||||
}
|
||||
|
||||
server {
|
||||
listen 192.168.1.2:80;
|
||||
server_name linux.vrem.ro;
|
||||
charset utf-8;
|
||||
root /var/www/html/postfixadmin;
|
||||
index index.php;
|
||||
|
||||
|
||||
access_log /var/log/nginx/access.log;
|
||||
error_log /var/log/nginx/error.log debug;
|
||||
|
||||
location / {
|
||||
try_files $uri $uri/ index.php;
|
||||
}
|
||||
|
||||
location /nginx_status {
|
||||
stub_status on;
|
||||
access_log off;
|
||||
allow 127.0.0.1;
|
||||
allow 192.168.1.2;
|
||||
allow 10.208.1.202;
|
||||
deny all;
|
||||
}
|
||||
|
||||
location ~* \.php$ {
|
||||
fastcgi_split_path_info ^(.+\.php)(/.+)$;
|
||||
include fastcgi_params;
|
||||
fastcgi_pass php-default;
|
||||
fastcgi_index index.php;
|
||||
fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name;
|
||||
fastcgi_buffer_size 16k;
|
||||
fastcgi_buffers 8 32k;
|
||||
}
|
||||
|
||||
}
|
||||
44
nginx/conf.d/default.conf.rpmnew
Normal file
44
nginx/conf.d/default.conf.rpmnew
Normal file
@@ -0,0 +1,44 @@
|
||||
server {
|
||||
listen 80;
|
||||
server_name localhost;
|
||||
|
||||
#access_log /var/log/nginx/host.access.log main;
|
||||
|
||||
location / {
|
||||
root /usr/share/nginx/html;
|
||||
index index.html index.htm;
|
||||
}
|
||||
|
||||
#error_page 404 /404.html;
|
||||
|
||||
# redirect server error pages to the static page /50x.html
|
||||
#
|
||||
error_page 500 502 503 504 /50x.html;
|
||||
location = /50x.html {
|
||||
root /usr/share/nginx/html;
|
||||
}
|
||||
|
||||
# proxy the PHP scripts to Apache listening on 127.0.0.1:80
|
||||
#
|
||||
#location ~ \.php$ {
|
||||
# proxy_pass http://127.0.0.1;
|
||||
#}
|
||||
|
||||
# pass the PHP scripts to FastCGI server listening on 127.0.0.1:9000
|
||||
#
|
||||
#location ~ \.php$ {
|
||||
# root html;
|
||||
# fastcgi_pass 127.0.0.1:9000;
|
||||
# fastcgi_index index.php;
|
||||
# fastcgi_param SCRIPT_FILENAME /scripts$fastcgi_script_name;
|
||||
# include fastcgi_params;
|
||||
#}
|
||||
|
||||
# deny access to .htaccess files, if Apache's document root
|
||||
# concurs with nginx's one
|
||||
#
|
||||
#location ~ /\.ht {
|
||||
# deny all;
|
||||
#}
|
||||
}
|
||||
|
||||
34
nginx/conf.d/files.898.ro.conf
Normal file
34
nginx/conf.d/files.898.ro.conf
Normal file
@@ -0,0 +1,34 @@
|
||||
server {
|
||||
listen 192.168.1.2:80;
|
||||
server_name files.898.ro;
|
||||
charset utf-8;
|
||||
root /var/www/html/afiles;
|
||||
index index.php index.html index.htm;
|
||||
|
||||
access_log /var/log/nginx/files.898.ro.access.log;
|
||||
error_log /var/log/nginx/files.898.ro.error.log;
|
||||
|
||||
location ~* \.php$ {
|
||||
fastcgi_split_path_info ^(.+\.php)(/.+)$;
|
||||
include fastcgi_params;
|
||||
fastcgi_pass unix:/var/run/php-fpm.sock;
|
||||
fastcgi_index index.php;
|
||||
fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name;
|
||||
fastcgi_buffer_size 16k;
|
||||
fastcgi_buffers 4 16k;
|
||||
}
|
||||
|
||||
# gzip should not be used with SSL
|
||||
gzip off;
|
||||
|
||||
listen 192.168.1.2:443 ssl; # managed by Certbot
|
||||
ssl_certificate /etc/letsencrypt/live/files.898.ro/fullchain.pem; # managed by Certbot
|
||||
ssl_certificate_key /etc/letsencrypt/live/files.898.ro/privkey.pem; # managed by Certbot
|
||||
include /etc/letsencrypt/options-ssl-nginx.conf; # managed by Certbot
|
||||
|
||||
### redirect
|
||||
if ($scheme != "https") {
|
||||
return 301 https://$host$request_uri;
|
||||
} # managed by Certbot
|
||||
|
||||
}
|
||||
29
nginx/conf.d/fl.898.ro.conf
Normal file
29
nginx/conf.d/fl.898.ro.conf
Normal file
@@ -0,0 +1,29 @@
|
||||
server {
|
||||
listen 192.168.1.2:80;
|
||||
|
||||
set_real_ip_from 127.0.0.1;
|
||||
set_real_ip_from 192.168.1.2;
|
||||
set_real_ip_from 89.33.25.234/32;
|
||||
real_ip_header CF-Connecting-IP;
|
||||
|
||||
#Logging
|
||||
access_log /var/log/nginx/fl.898.ro.access.log;
|
||||
error_log /var/log/nginx/fl.898.ro.error.log;
|
||||
|
||||
server_name fl.898.ro fl2.898.ro;
|
||||
|
||||
location / {
|
||||
proxy_pass http://89.33.25.234:7082;
|
||||
proxy_http_version 1.1;
|
||||
proxy_set_header Upgrade $http_upgrade;
|
||||
proxy_set_header Connection 'upgrade';
|
||||
proxy_set_header Host $host;
|
||||
proxy_cache_bypass $http_upgrade;
|
||||
proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
|
||||
}
|
||||
|
||||
location /api {
|
||||
proxy_pass http://89.33.25.234:7082;
|
||||
}
|
||||
|
||||
}
|
||||
47
nginx/conf.d/ganool.conf
Normal file
47
nginx/conf.d/ganool.conf
Normal file
@@ -0,0 +1,47 @@
|
||||
server {
|
||||
listen 192.168.1.2:80;
|
||||
|
||||
#Logging
|
||||
access_log /var/log/nginx/indoxxi.love.access.log;
|
||||
#access_log off;
|
||||
error_log /var/log/nginx/indoxxi.love.error.log warn;
|
||||
|
||||
server_name indoxxi.love www.indoxxi.love 123movie.nu www.123movie.nu www1.123movie.nu www2.123movie.nu www3.123movie.nu 79.124.60.188;
|
||||
|
||||
location / {
|
||||
location ~.*\.(3gp|gif|jpg|jpeg|png|ico|wmv|avi|asf|asx|mpg|mpeg|mp4|pls|mp3|mid|wav|swf|flv|html|htm|txt|js|css|exe|zip|tar|rar|gz|tgz|bz2|uha|7z|doc|docx|xls|xlsx|pdf|iso|woff|ttf|svg|eot)\$ {
|
||||
expires 7d;#Comment this out if you are using the apache backend cache-control/expires headers.
|
||||
try_files \$uri \@backend;
|
||||
}
|
||||
|
||||
error_page 405 = \@backend;
|
||||
error_page 500 = \@custom;
|
||||
add_header X-Cache "HIT from Backend";
|
||||
|
||||
proxy_pass http://10.208.99.24:202;
|
||||
include proxy.inc;
|
||||
}
|
||||
|
||||
location \@backend {
|
||||
internal;
|
||||
proxy_pass http://10.208.99.24:202;
|
||||
|
||||
include proxy.inc;
|
||||
}
|
||||
|
||||
location \@custom {
|
||||
internal;
|
||||
proxy_pass http://10.208.99.24:202;
|
||||
include proxy.inc;
|
||||
}
|
||||
|
||||
location ~ .*\.(php|jsp|cgi|pl|py)?\$ {
|
||||
proxy_pass http://10.208.99.24:202;
|
||||
include proxy.inc;
|
||||
}
|
||||
|
||||
location ~ /\.ht {
|
||||
deny all;
|
||||
}
|
||||
|
||||
}
|
||||
36
nginx/conf.d/ganool/nginx/conf.d/cdn_cloudflare.conf
Normal file
36
nginx/conf.d/ganool/nginx/conf.d/cdn_cloudflare.conf
Normal file
@@ -0,0 +1,36 @@
|
||||
#CloudFlare
|
||||
set_real_ip_from 103.21.244.0/22;
|
||||
set_real_ip_from 103.22.200.0/22;
|
||||
set_real_ip_from 103.31.4.0/22;
|
||||
set_real_ip_from 104.16.0.0/12;
|
||||
set_real_ip_from 108.162.192.0/18;
|
||||
set_real_ip_from 131.0.72.0/22;
|
||||
set_real_ip_from 141.101.64.0/18;
|
||||
set_real_ip_from 162.158.0.0/15;
|
||||
set_real_ip_from 172.64.0.0/13;
|
||||
set_real_ip_from 173.245.48.0/20;
|
||||
set_real_ip_from 188.114.96.0/20;
|
||||
set_real_ip_from 190.93.240.0/20;
|
||||
set_real_ip_from 197.234.240.0/22;
|
||||
set_real_ip_from 198.41.128.0/17;
|
||||
set_real_ip_from 199.27.128.0/21;
|
||||
|
||||
set_real_ip_from 2400:cb00::/32;
|
||||
set_real_ip_from 2405:8100::/32;
|
||||
set_real_ip_from 2405:b500::/32;
|
||||
set_real_ip_from 2606:4700::/32;
|
||||
set_real_ip_from 2803:f800::/32;
|
||||
set_real_ip_from 2c0f:f248::/32;
|
||||
set_real_ip_from 2a06:98c0::/29;
|
||||
|
||||
#Incapsula
|
||||
set_real_ip_from 199.83.128.0/21;
|
||||
set_real_ip_from 198.143.32.0/19;
|
||||
set_real_ip_from 149.126.72.0/21;
|
||||
set_real_ip_from 103.28.248.0/22;
|
||||
set_real_ip_from 45.64.64.0/22;
|
||||
set_real_ip_from 185.11.124.0/22;
|
||||
set_real_ip_from 192.230.64.0/18;
|
||||
set_real_ip_from 107.154.126.0/24;
|
||||
|
||||
set_real_ip_from 2a02:e980::/29;
|
||||
1
nginx/conf.d/ganool/nginx/fastcgi.conf
Normal file
1
nginx/conf.d/ganool/nginx/fastcgi.conf
Normal file
@@ -0,0 +1 @@
|
||||
fastcgi_param HTTP_PROXY "";
|
||||
26
nginx/conf.d/ganool/nginx/fastcgi_params
Normal file
26
nginx/conf.d/ganool/nginx/fastcgi_params
Normal file
@@ -0,0 +1,26 @@
|
||||
|
||||
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 REQUEST_SCHEME $scheme;
|
||||
fastcgi_param HTTPS $https if_not_empty;
|
||||
|
||||
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;
|
||||
|
||||
# PHP only, required if PHP was built with --enable-force-cgi-redirect
|
||||
fastcgi_param REDIRECT_STATUS 200;
|
||||
fastcgi_param HTTP_PROXY "";
|
||||
40
nginx/conf.d/ganool/nginx/iptables
Normal file
40
nginx/conf.d/ganool/nginx/iptables
Normal file
@@ -0,0 +1,40 @@
|
||||
# Generated by iptables-save v1.4.21 on Tue Aug 1 10:52:57 2017
|
||||
*nat
|
||||
:PREROUTING ACCEPT [336:62489]
|
||||
:INPUT ACCEPT [302:37047]
|
||||
:OUTPUT ACCEPT [405:24205]
|
||||
:POSTROUTING ACCEPT [405:24205]
|
||||
COMMIT
|
||||
# Completed on Tue Aug 1 10:52:57 2017
|
||||
# Generated by iptables-save v1.4.21 on Tue Aug 1 10:52:57 2017
|
||||
*filter
|
||||
:INPUT DROP [0:0]
|
||||
:FORWARD DROP [0:0]
|
||||
:OUTPUT ACCEPT [4236:1017174]
|
||||
-A INPUT -s 89.121.131.74/32 -p tcp -m tcp --dport 22 -j ACCEPT
|
||||
-A INPUT -s 86.104.210.218/32 -p tcp -m tcp --dport 22 -j ACCEPT
|
||||
-A INPUT -s 185.47.62.100/32 -p tcp -m tcp --dport 22 -j ACCEPT
|
||||
-A INPUT -s 185.112.156.227/32 -p tcp -m tcp --dport 22 -j ACCEPT
|
||||
-A INPUT -s 86.104.210.218/32 -p udp -m udp --dport 161 -j ACCEPT
|
||||
-A INPUT -s 185.112.156.227/32 -p tcp -m tcp --dport 8197 -j ACCEPT
|
||||
-A INPUT -i lo -j ACCEPT
|
||||
-A INPUT -d 127.0.0.0/8 -j REJECT --reject-with icmp-port-unreachable
|
||||
-A INPUT -p icmp -m icmp --icmp-type 17 -j DROP
|
||||
-A INPUT -p icmp -m icmp --icmp-type 13 -j DROP
|
||||
-A INPUT -p icmp -m icmp --icmp-type 8 -m limit --limit 1/sec -j ACCEPT
|
||||
-A INPUT -p tcp -m tcp ! --tcp-flags FIN,SYN,RST,ACK SYN -m state --state NEW -j DROP
|
||||
-A INPUT -p tcp -m tcp --tcp-flags FIN,SYN,RST,PSH,ACK,URG NONE -j DROP
|
||||
-A INPUT -p tcp -m tcp --tcp-flags FIN,SYN,RST,PSH,ACK,URG FIN,SYN,RST,PSH,ACK,URG -j DROP
|
||||
-A INPUT -m state --state RELATED,ESTABLISHED -j ACCEPT
|
||||
-A INPUT -m state --state INVALID -j DROP
|
||||
COMMIT
|
||||
# Completed on Tue Aug 1 10:52:57 2017
|
||||
# Generated by iptables-save v1.4.21 on Tue Aug 1 10:52:57 2017
|
||||
*mangle
|
||||
:PREROUTING ACCEPT [13701:9224005]
|
||||
:INPUT ACCEPT [13701:9224005]
|
||||
:FORWARD ACCEPT [0:0]
|
||||
:OUTPUT ACCEPT [11672:3002622]
|
||||
:POSTROUTING ACCEPT [11672:3002622]
|
||||
COMMIT
|
||||
# Completed on Tue Aug 1 10:52:57 2017
|
||||
109
nginx/conf.d/ganool/nginx/koi-utf
Normal file
109
nginx/conf.d/ganool/nginx/koi-utf
Normal file
@@ -0,0 +1,109 @@
|
||||
|
||||
# This map is not a full koi8-r <> utf8 map: it does not contain
|
||||
# box-drawing and some other characters. Besides this map contains
|
||||
# several koi8-u and Byelorussian letters which are not in koi8-r.
|
||||
# If you need a full and standard map, use contrib/unicode2nginx/koi-utf
|
||||
# map instead.
|
||||
|
||||
charset_map koi8-r utf-8 {
|
||||
|
||||
80 E282AC ; # euro
|
||||
|
||||
95 E280A2 ; # bullet
|
||||
|
||||
9A C2A0 ; #
|
||||
|
||||
9E C2B7 ; # ·
|
||||
|
||||
A3 D191 ; # small yo
|
||||
A4 D194 ; # small Ukrainian ye
|
||||
|
||||
A6 D196 ; # small Ukrainian i
|
||||
A7 D197 ; # small Ukrainian yi
|
||||
|
||||
AD D291 ; # small Ukrainian soft g
|
||||
AE D19E ; # small Byelorussian short u
|
||||
|
||||
B0 C2B0 ; # °
|
||||
|
||||
B3 D081 ; # capital YO
|
||||
B4 D084 ; # capital Ukrainian YE
|
||||
|
||||
B6 D086 ; # capital Ukrainian I
|
||||
B7 D087 ; # capital Ukrainian YI
|
||||
|
||||
B9 E28496 ; # numero sign
|
||||
|
||||
BD D290 ; # capital Ukrainian soft G
|
||||
BE D18E ; # capital Byelorussian short U
|
||||
|
||||
BF C2A9 ; # (C)
|
||||
|
||||
C0 D18E ; # small yu
|
||||
C1 D0B0 ; # small a
|
||||
C2 D0B1 ; # small b
|
||||
C3 D186 ; # small ts
|
||||
C4 D0B4 ; # small d
|
||||
C5 D0B5 ; # small ye
|
||||
C6 D184 ; # small f
|
||||
C7 D0B3 ; # small g
|
||||
C8 D185 ; # small kh
|
||||
C9 D0B8 ; # small i
|
||||
CA D0B9 ; # small j
|
||||
CB D0BA ; # small k
|
||||
CC D0BB ; # small l
|
||||
CD D0BC ; # small m
|
||||
CE D0BD ; # small n
|
||||
CF D0BE ; # small o
|
||||
|
||||
D0 D0BF ; # small p
|
||||
D1 D18F ; # small ya
|
||||
D2 D180 ; # small r
|
||||
D3 D181 ; # small s
|
||||
D4 D182 ; # small t
|
||||
D5 D183 ; # small u
|
||||
D6 D0B6 ; # small zh
|
||||
D7 D0B2 ; # small v
|
||||
D8 D18C ; # small soft sign
|
||||
D9 D18B ; # small y
|
||||
DA D0B7 ; # small z
|
||||
DB D188 ; # small sh
|
||||
DC D18D ; # small e
|
||||
DD D189 ; # small shch
|
||||
DE D187 ; # small ch
|
||||
DF D18A ; # small hard sign
|
||||
|
||||
E0 D0AE ; # capital YU
|
||||
E1 D090 ; # capital A
|
||||
E2 D091 ; # capital B
|
||||
E3 D0A6 ; # capital TS
|
||||
E4 D094 ; # capital D
|
||||
E5 D095 ; # capital YE
|
||||
E6 D0A4 ; # capital F
|
||||
E7 D093 ; # capital G
|
||||
E8 D0A5 ; # capital KH
|
||||
E9 D098 ; # capital I
|
||||
EA D099 ; # capital J
|
||||
EB D09A ; # capital K
|
||||
EC D09B ; # capital L
|
||||
ED D09C ; # capital M
|
||||
EE D09D ; # capital N
|
||||
EF D09E ; # capital O
|
||||
|
||||
F0 D09F ; # capital P
|
||||
F1 D0AF ; # capital YA
|
||||
F2 D0A0 ; # capital R
|
||||
F3 D0A1 ; # capital S
|
||||
F4 D0A2 ; # capital T
|
||||
F5 D0A3 ; # capital U
|
||||
F6 D096 ; # capital ZH
|
||||
F7 D092 ; # capital V
|
||||
F8 D0AC ; # capital soft sign
|
||||
F9 D0AB ; # capital Y
|
||||
FA D097 ; # capital Z
|
||||
FB D0A8 ; # capital SH
|
||||
FC D0AD ; # capital E
|
||||
FD D0A9 ; # capital SHCH
|
||||
FE D0A7 ; # capital CH
|
||||
FF D0AA ; # capital hard sign
|
||||
}
|
||||
103
nginx/conf.d/ganool/nginx/koi-win
Normal file
103
nginx/conf.d/ganool/nginx/koi-win
Normal file
@@ -0,0 +1,103 @@
|
||||
|
||||
charset_map koi8-r windows-1251 {
|
||||
|
||||
80 88 ; # euro
|
||||
|
||||
95 95 ; # bullet
|
||||
|
||||
9A A0 ; #
|
||||
|
||||
9E B7 ; # ·
|
||||
|
||||
A3 B8 ; # small yo
|
||||
A4 BA ; # small Ukrainian ye
|
||||
|
||||
A6 B3 ; # small Ukrainian i
|
||||
A7 BF ; # small Ukrainian yi
|
||||
|
||||
AD B4 ; # small Ukrainian soft g
|
||||
AE A2 ; # small Byelorussian short u
|
||||
|
||||
B0 B0 ; # °
|
||||
|
||||
B3 A8 ; # capital YO
|
||||
B4 AA ; # capital Ukrainian YE
|
||||
|
||||
B6 B2 ; # capital Ukrainian I
|
||||
B7 AF ; # capital Ukrainian YI
|
||||
|
||||
B9 B9 ; # numero sign
|
||||
|
||||
BD A5 ; # capital Ukrainian soft G
|
||||
BE A1 ; # capital Byelorussian short U
|
||||
|
||||
BF A9 ; # (C)
|
||||
|
||||
C0 FE ; # small yu
|
||||
C1 E0 ; # small a
|
||||
C2 E1 ; # small b
|
||||
C3 F6 ; # small ts
|
||||
C4 E4 ; # small d
|
||||
C5 E5 ; # small ye
|
||||
C6 F4 ; # small f
|
||||
C7 E3 ; # small g
|
||||
C8 F5 ; # small kh
|
||||
C9 E8 ; # small i
|
||||
CA E9 ; # small j
|
||||
CB EA ; # small k
|
||||
CC EB ; # small l
|
||||
CD EC ; # small m
|
||||
CE ED ; # small n
|
||||
CF EE ; # small o
|
||||
|
||||
D0 EF ; # small p
|
||||
D1 FF ; # small ya
|
||||
D2 F0 ; # small r
|
||||
D3 F1 ; # small s
|
||||
D4 F2 ; # small t
|
||||
D5 F3 ; # small u
|
||||
D6 E6 ; # small zh
|
||||
D7 E2 ; # small v
|
||||
D8 FC ; # small soft sign
|
||||
D9 FB ; # small y
|
||||
DA E7 ; # small z
|
||||
DB F8 ; # small sh
|
||||
DC FD ; # small e
|
||||
DD F9 ; # small shch
|
||||
DE F7 ; # small ch
|
||||
DF FA ; # small hard sign
|
||||
|
||||
E0 DE ; # capital YU
|
||||
E1 C0 ; # capital A
|
||||
E2 C1 ; # capital B
|
||||
E3 D6 ; # capital TS
|
||||
E4 C4 ; # capital D
|
||||
E5 C5 ; # capital YE
|
||||
E6 D4 ; # capital F
|
||||
E7 C3 ; # capital G
|
||||
E8 D5 ; # capital KH
|
||||
E9 C8 ; # capital I
|
||||
EA C9 ; # capital J
|
||||
EB CA ; # capital K
|
||||
EC CB ; # capital L
|
||||
ED CC ; # capital M
|
||||
EE CD ; # capital N
|
||||
EF CE ; # capital O
|
||||
|
||||
F0 CF ; # capital P
|
||||
F1 DF ; # capital YA
|
||||
F2 D0 ; # capital R
|
||||
F3 D1 ; # capital S
|
||||
F4 D2 ; # capital T
|
||||
F5 D3 ; # capital U
|
||||
F6 C6 ; # capital ZH
|
||||
F7 C2 ; # capital V
|
||||
F8 DC ; # capital soft sign
|
||||
F9 DB ; # capital Y
|
||||
FA C7 ; # capital Z
|
||||
FB D8 ; # capital SH
|
||||
FC DD ; # capital E
|
||||
FD D9 ; # capital SHCH
|
||||
FE D7 ; # capital CH
|
||||
FF DA ; # capital hard sign
|
||||
}
|
||||
89
nginx/conf.d/ganool/nginx/mime.types
Normal file
89
nginx/conf.d/ganool/nginx/mime.types
Normal file
@@ -0,0 +1,89 @@
|
||||
|
||||
types {
|
||||
text/html html htm shtml;
|
||||
text/css css;
|
||||
text/xml xml;
|
||||
image/gif gif;
|
||||
image/jpeg jpeg jpg;
|
||||
application/javascript js;
|
||||
application/atom+xml atom;
|
||||
application/rss+xml rss;
|
||||
|
||||
text/mathml mml;
|
||||
text/plain txt;
|
||||
text/vnd.sun.j2me.app-descriptor jad;
|
||||
text/vnd.wap.wml wml;
|
||||
text/x-component htc;
|
||||
|
||||
image/png png;
|
||||
image/tiff tif tiff;
|
||||
image/vnd.wap.wbmp wbmp;
|
||||
image/x-icon ico;
|
||||
image/x-jng jng;
|
||||
image/x-ms-bmp bmp;
|
||||
image/svg+xml svg svgz;
|
||||
image/webp webp;
|
||||
|
||||
application/font-woff woff;
|
||||
application/java-archive jar war ear;
|
||||
application/json json;
|
||||
application/mac-binhex40 hqx;
|
||||
application/msword doc;
|
||||
application/pdf pdf;
|
||||
application/postscript ps eps ai;
|
||||
application/rtf rtf;
|
||||
application/vnd.apple.mpegurl m3u8;
|
||||
application/vnd.ms-excel xls;
|
||||
application/vnd.ms-fontobject eot;
|
||||
application/vnd.ms-powerpoint ppt;
|
||||
application/vnd.wap.wmlc wmlc;
|
||||
application/vnd.google-earth.kml+xml kml;
|
||||
application/vnd.google-earth.kmz kmz;
|
||||
application/x-7z-compressed 7z;
|
||||
application/x-cocoa cco;
|
||||
application/x-java-archive-diff jardiff;
|
||||
application/x-java-jnlp-file jnlp;
|
||||
application/x-makeself run;
|
||||
application/x-perl pl pm;
|
||||
application/x-pilot prc pdb;
|
||||
application/x-rar-compressed rar;
|
||||
application/x-redhat-package-manager rpm;
|
||||
application/x-sea sea;
|
||||
application/x-shockwave-flash swf;
|
||||
application/x-stuffit sit;
|
||||
application/x-tcl tcl tk;
|
||||
application/x-x509-ca-cert der pem crt;
|
||||
application/x-xpinstall xpi;
|
||||
application/xhtml+xml xhtml;
|
||||
application/xspf+xml xspf;
|
||||
application/zip zip;
|
||||
|
||||
application/octet-stream bin exe dll;
|
||||
application/octet-stream deb;
|
||||
application/octet-stream dmg;
|
||||
application/octet-stream iso img;
|
||||
application/octet-stream msi msp msm;
|
||||
|
||||
application/vnd.openxmlformats-officedocument.wordprocessingml.document docx;
|
||||
application/vnd.openxmlformats-officedocument.spreadsheetml.sheet xlsx;
|
||||
application/vnd.openxmlformats-officedocument.presentationml.presentation pptx;
|
||||
|
||||
audio/midi mid midi kar;
|
||||
audio/mpeg mp3;
|
||||
audio/ogg ogg;
|
||||
audio/x-m4a m4a;
|
||||
audio/x-realaudio ra;
|
||||
|
||||
video/3gpp 3gpp 3gp;
|
||||
video/mp2t ts;
|
||||
video/mp4 mp4;
|
||||
video/mpeg mpeg mpg;
|
||||
video/quicktime mov;
|
||||
video/webm webm;
|
||||
video/x-flv flv;
|
||||
video/x-m4v m4v;
|
||||
video/x-mng mng;
|
||||
video/x-ms-asf asx asf;
|
||||
video/x-ms-wmv wmv;
|
||||
video/x-msvideo avi;
|
||||
}
|
||||
79
nginx/conf.d/ganool/nginx/nginx.conf
Normal file
79
nginx/conf.d/ganool/nginx/nginx.conf
Normal file
@@ -0,0 +1,79 @@
|
||||
user nginx;
|
||||
worker_processes auto;
|
||||
|
||||
error_log off;
|
||||
|
||||
pid /var/run/nginx.pid;
|
||||
|
||||
events {
|
||||
worker_connections 10240; # increase for busier servers
|
||||
use epoll; # you should use epoll here for Linux kernels 2.6.x
|
||||
multi_accept on;
|
||||
accept_mutex off;
|
||||
}
|
||||
|
||||
worker_rlimit_nofile 65535;
|
||||
worker_priority -10;
|
||||
|
||||
http {
|
||||
include /etc/nginx/mime.types;
|
||||
default_type application/octet-stream;
|
||||
|
||||
server_tokens off;
|
||||
sendfile on;
|
||||
sendfile_max_chunk 10240k;
|
||||
#aio threads=default;
|
||||
directio 64m; #Serve Large files like media files using directio
|
||||
|
||||
tcp_nopush on;
|
||||
tcp_nodelay on;
|
||||
|
||||
proxy_http_version 1.1;
|
||||
proxy_set_header Connection "";
|
||||
|
||||
server_name_in_redirect on;
|
||||
server_names_hash_max_size 2048;
|
||||
server_names_hash_bucket_size 2048;
|
||||
|
||||
# timeouts
|
||||
ignore_invalid_headers on;
|
||||
client_header_timeout 90;
|
||||
client_body_timeout 90;
|
||||
send_timeout 90;
|
||||
reset_timedout_connection on;
|
||||
client_body_in_file_only clean;
|
||||
keepalive_requests 1024;
|
||||
keepalive_timeout 10s;
|
||||
|
||||
# gzip compression
|
||||
gzip on;
|
||||
gzip_vary on;
|
||||
gzip_disable "MSIE [1-6]\.(?!.*SV1)";
|
||||
gzip_proxied any;
|
||||
gzip_min_length 1024;
|
||||
gzip_http_version 1.1;
|
||||
gzip_comp_level 6;
|
||||
gzip_buffers 64 8k;
|
||||
gzip_types text/plain text/xml image/svg+xml application/rss+xml application/atom+xml application/xhtml+xml text/css application/json text/javascript application/x-javascript application/font-otf application/font-ttf;
|
||||
|
||||
# buffers
|
||||
connection_pool_size 256;
|
||||
client_body_buffer_size 128K;
|
||||
client_header_buffer_size 16k;
|
||||
large_client_header_buffers 4 32k;
|
||||
request_pool_size 4k;
|
||||
output_buffers 4 32k;
|
||||
postpone_output 1460;
|
||||
client_max_body_size 64M;
|
||||
|
||||
# fastcgi settings
|
||||
fastcgi_buffers 16 16k;
|
||||
fastcgi_buffer_size 32k;
|
||||
# the below options depend on theoretical maximum of your PHP script run-time
|
||||
fastcgi_read_timeout 600s;
|
||||
fastcgi_send_timeout 600s;
|
||||
|
||||
include /etc/nginx/conf.d/*.conf;
|
||||
include /etc/nginx/vhosts.d/*.conf;
|
||||
|
||||
}
|
||||
88
nginx/conf.d/ganool/nginx/nginx.conf.bkp
Normal file
88
nginx/conf.d/ganool/nginx/nginx.conf.bkp
Normal file
@@ -0,0 +1,88 @@
|
||||
user nginx;
|
||||
worker_processes auto;
|
||||
|
||||
error_log off;
|
||||
|
||||
pid /var/run/nginx.pid;
|
||||
|
||||
events {
|
||||
worker_connections 2048; # increase for busier servers
|
||||
use epoll; # you should use epoll here for Linux kernels 2.6.x
|
||||
multi_accept on;
|
||||
accept_mutex off;
|
||||
}
|
||||
|
||||
worker_rlimit_nofile 20480;
|
||||
#worker_priority -5;
|
||||
|
||||
http {
|
||||
include /etc/nginx/mime.types;
|
||||
default_type application/octet-stream;
|
||||
|
||||
log_format main '$remote_addr - $remote_user [$time_local] "$request" '
|
||||
'$status $body_bytes_sent "$http_referer" '
|
||||
'"$http_user_agent" "$http_x_forwarded_for"';
|
||||
|
||||
server_tokens off;
|
||||
sendfile on;
|
||||
sendfile_max_chunk 512k;
|
||||
aio threads=default;
|
||||
directio 64m; #Serve Large files like media files using directio
|
||||
|
||||
tcp_nopush on;
|
||||
tcp_nodelay on;
|
||||
|
||||
proxy_http_version 1.1;
|
||||
proxy_set_header Connection "";
|
||||
|
||||
server_name_in_redirect on;
|
||||
server_names_hash_max_size 1024;
|
||||
server_names_hash_bucket_size 1024;
|
||||
|
||||
# timeouts
|
||||
ignore_invalid_headers on;
|
||||
client_header_timeout 300;
|
||||
client_body_timeout 300;
|
||||
send_timeout 300;
|
||||
reset_timedout_connection on;
|
||||
client_body_in_file_only clean;
|
||||
keepalive_timeout 10 5;
|
||||
|
||||
# gzip compression
|
||||
gzip on;
|
||||
gzip_vary on;
|
||||
gzip_disable "MSIE [1-6]\.(?!.*SV1)";
|
||||
gzip_proxied any;
|
||||
gzip_min_length 1024;
|
||||
gzip_http_version 1.1;
|
||||
gzip_comp_level 6;
|
||||
gzip_buffers 64 8k;
|
||||
gzip_types text/plain text/xml text/css application/x-javascript application/xml image/png image/x-icon image/gif image/jpeg application/xml+rss text/javascript application/atom+xml application/javascript application/json;
|
||||
|
||||
# buffers
|
||||
connection_pool_size 256;
|
||||
client_body_buffer_size 128K;
|
||||
client_header_buffer_size 16k;
|
||||
large_client_header_buffers 4 32k;
|
||||
request_pool_size 4k;
|
||||
output_buffers 4 32k;
|
||||
postpone_output 1460;
|
||||
client_max_body_size 64M;
|
||||
|
||||
# fastcgi settings
|
||||
fastcgi_buffers 16 16k;
|
||||
fastcgi_buffer_size 32k;
|
||||
# the below options depend on theoretical maximum of your PHP script run-time
|
||||
fastcgi_read_timeout 300;
|
||||
fastcgi_send_timeout 300;
|
||||
|
||||
# open file cache
|
||||
open_file_cache max=4096 inactive=5m;
|
||||
open_file_cache_valid 10m;
|
||||
open_file_cache_min_uses 2;
|
||||
open_file_cache_errors on;
|
||||
|
||||
include /etc/nginx/conf.d/*.conf;
|
||||
include /etc/nginx/vhosts.d/*.conf;
|
||||
|
||||
}
|
||||
BIN
nginx/conf.d/ganool/nginx/ngx.tgz
Normal file
BIN
nginx/conf.d/ganool/nginx/ngx.tgz
Normal file
Binary file not shown.
BIN
nginx/conf.d/ganool/nginx/ngx1.tgz
Normal file
BIN
nginx/conf.d/ganool/nginx/ngx1.tgz
Normal file
Binary file not shown.
40
nginx/conf.d/ganool/nginx/ngx1/iptables
Normal file
40
nginx/conf.d/ganool/nginx/ngx1/iptables
Normal file
@@ -0,0 +1,40 @@
|
||||
# Generated by iptables-save v1.4.21 on Tue Aug 1 10:52:57 2017
|
||||
*nat
|
||||
:PREROUTING ACCEPT [336:62489]
|
||||
:INPUT ACCEPT [302:37047]
|
||||
:OUTPUT ACCEPT [405:24205]
|
||||
:POSTROUTING ACCEPT [405:24205]
|
||||
COMMIT
|
||||
# Completed on Tue Aug 1 10:52:57 2017
|
||||
# Generated by iptables-save v1.4.21 on Tue Aug 1 10:52:57 2017
|
||||
*filter
|
||||
:INPUT DROP [0:0]
|
||||
:FORWARD DROP [0:0]
|
||||
:OUTPUT ACCEPT [4236:1017174]
|
||||
-A INPUT -s 89.121.131.74/32 -p tcp -m tcp --dport 22 -j ACCEPT
|
||||
-A INPUT -s 86.104.210.218/32 -p tcp -m tcp --dport 22 -j ACCEPT
|
||||
-A INPUT -s 185.47.62.100/32 -p tcp -m tcp --dport 22 -j ACCEPT
|
||||
-A INPUT -s 185.112.156.227/32 -p tcp -m tcp --dport 22 -j ACCEPT
|
||||
-A INPUT -s 86.104.210.218/32 -p udp -m udp --dport 161 -j ACCEPT
|
||||
-A INPUT -s 185.112.156.227/32 -p tcp -m tcp --dport 8197 -j ACCEPT
|
||||
-A INPUT -i lo -j ACCEPT
|
||||
-A INPUT -d 127.0.0.0/8 -j REJECT --reject-with icmp-port-unreachable
|
||||
-A INPUT -p icmp -m icmp --icmp-type 17 -j DROP
|
||||
-A INPUT -p icmp -m icmp --icmp-type 13 -j DROP
|
||||
-A INPUT -p icmp -m icmp --icmp-type 8 -m limit --limit 1/sec -j ACCEPT
|
||||
-A INPUT -p tcp -m tcp ! --tcp-flags FIN,SYN,RST,ACK SYN -m state --state NEW -j DROP
|
||||
-A INPUT -p tcp -m tcp --tcp-flags FIN,SYN,RST,PSH,ACK,URG NONE -j DROP
|
||||
-A INPUT -p tcp -m tcp --tcp-flags FIN,SYN,RST,PSH,ACK,URG FIN,SYN,RST,PSH,ACK,URG -j DROP
|
||||
-A INPUT -m state --state RELATED,ESTABLISHED -j ACCEPT
|
||||
-A INPUT -m state --state INVALID -j DROP
|
||||
COMMIT
|
||||
# Completed on Tue Aug 1 10:52:57 2017
|
||||
# Generated by iptables-save v1.4.21 on Tue Aug 1 10:52:57 2017
|
||||
*mangle
|
||||
:PREROUTING ACCEPT [13701:9224005]
|
||||
:INPUT ACCEPT [13701:9224005]
|
||||
:FORWARD ACCEPT [0:0]
|
||||
:OUTPUT ACCEPT [11672:3002622]
|
||||
:POSTROUTING ACCEPT [11672:3002622]
|
||||
COMMIT
|
||||
# Completed on Tue Aug 1 10:52:57 2017
|
||||
@@ -0,0 +1,36 @@
|
||||
#CloudFlare
|
||||
set_real_ip_from 103.21.244.0/22;
|
||||
set_real_ip_from 103.22.200.0/22;
|
||||
set_real_ip_from 103.31.4.0/22;
|
||||
set_real_ip_from 104.16.0.0/12;
|
||||
set_real_ip_from 108.162.192.0/18;
|
||||
set_real_ip_from 131.0.72.0/22;
|
||||
set_real_ip_from 141.101.64.0/18;
|
||||
set_real_ip_from 162.158.0.0/15;
|
||||
set_real_ip_from 172.64.0.0/13;
|
||||
set_real_ip_from 173.245.48.0/20;
|
||||
set_real_ip_from 188.114.96.0/20;
|
||||
set_real_ip_from 190.93.240.0/20;
|
||||
set_real_ip_from 197.234.240.0/22;
|
||||
set_real_ip_from 198.41.128.0/17;
|
||||
set_real_ip_from 199.27.128.0/21;
|
||||
|
||||
set_real_ip_from 2400:cb00::/32;
|
||||
set_real_ip_from 2405:8100::/32;
|
||||
set_real_ip_from 2405:b500::/32;
|
||||
set_real_ip_from 2606:4700::/32;
|
||||
set_real_ip_from 2803:f800::/32;
|
||||
set_real_ip_from 2c0f:f248::/32;
|
||||
set_real_ip_from 2a06:98c0::/29;
|
||||
|
||||
#Incapsula
|
||||
set_real_ip_from 199.83.128.0/21;
|
||||
set_real_ip_from 198.143.32.0/19;
|
||||
set_real_ip_from 149.126.72.0/21;
|
||||
set_real_ip_from 103.28.248.0/22;
|
||||
set_real_ip_from 45.64.64.0/22;
|
||||
set_real_ip_from 185.11.124.0/22;
|
||||
set_real_ip_from 192.230.64.0/18;
|
||||
set_real_ip_from 107.154.126.0/24;
|
||||
|
||||
set_real_ip_from 2a02:e980::/29;
|
||||
1
nginx/conf.d/ganool/nginx/ngx1/nginx/fastcgi.conf
Normal file
1
nginx/conf.d/ganool/nginx/ngx1/nginx/fastcgi.conf
Normal file
@@ -0,0 +1 @@
|
||||
fastcgi_param HTTP_PROXY "";
|
||||
26
nginx/conf.d/ganool/nginx/ngx1/nginx/fastcgi_params
Normal file
26
nginx/conf.d/ganool/nginx/ngx1/nginx/fastcgi_params
Normal file
@@ -0,0 +1,26 @@
|
||||
|
||||
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 REQUEST_SCHEME $scheme;
|
||||
fastcgi_param HTTPS $https if_not_empty;
|
||||
|
||||
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;
|
||||
|
||||
# PHP only, required if PHP was built with --enable-force-cgi-redirect
|
||||
fastcgi_param REDIRECT_STATUS 200;
|
||||
fastcgi_param HTTP_PROXY "";
|
||||
109
nginx/conf.d/ganool/nginx/ngx1/nginx/koi-utf
Normal file
109
nginx/conf.d/ganool/nginx/ngx1/nginx/koi-utf
Normal file
@@ -0,0 +1,109 @@
|
||||
|
||||
# This map is not a full koi8-r <> utf8 map: it does not contain
|
||||
# box-drawing and some other characters. Besides this map contains
|
||||
# several koi8-u and Byelorussian letters which are not in koi8-r.
|
||||
# If you need a full and standard map, use contrib/unicode2nginx/koi-utf
|
||||
# map instead.
|
||||
|
||||
charset_map koi8-r utf-8 {
|
||||
|
||||
80 E282AC ; # euro
|
||||
|
||||
95 E280A2 ; # bullet
|
||||
|
||||
9A C2A0 ; #
|
||||
|
||||
9E C2B7 ; # ·
|
||||
|
||||
A3 D191 ; # small yo
|
||||
A4 D194 ; # small Ukrainian ye
|
||||
|
||||
A6 D196 ; # small Ukrainian i
|
||||
A7 D197 ; # small Ukrainian yi
|
||||
|
||||
AD D291 ; # small Ukrainian soft g
|
||||
AE D19E ; # small Byelorussian short u
|
||||
|
||||
B0 C2B0 ; # °
|
||||
|
||||
B3 D081 ; # capital YO
|
||||
B4 D084 ; # capital Ukrainian YE
|
||||
|
||||
B6 D086 ; # capital Ukrainian I
|
||||
B7 D087 ; # capital Ukrainian YI
|
||||
|
||||
B9 E28496 ; # numero sign
|
||||
|
||||
BD D290 ; # capital Ukrainian soft G
|
||||
BE D18E ; # capital Byelorussian short U
|
||||
|
||||
BF C2A9 ; # (C)
|
||||
|
||||
C0 D18E ; # small yu
|
||||
C1 D0B0 ; # small a
|
||||
C2 D0B1 ; # small b
|
||||
C3 D186 ; # small ts
|
||||
C4 D0B4 ; # small d
|
||||
C5 D0B5 ; # small ye
|
||||
C6 D184 ; # small f
|
||||
C7 D0B3 ; # small g
|
||||
C8 D185 ; # small kh
|
||||
C9 D0B8 ; # small i
|
||||
CA D0B9 ; # small j
|
||||
CB D0BA ; # small k
|
||||
CC D0BB ; # small l
|
||||
CD D0BC ; # small m
|
||||
CE D0BD ; # small n
|
||||
CF D0BE ; # small o
|
||||
|
||||
D0 D0BF ; # small p
|
||||
D1 D18F ; # small ya
|
||||
D2 D180 ; # small r
|
||||
D3 D181 ; # small s
|
||||
D4 D182 ; # small t
|
||||
D5 D183 ; # small u
|
||||
D6 D0B6 ; # small zh
|
||||
D7 D0B2 ; # small v
|
||||
D8 D18C ; # small soft sign
|
||||
D9 D18B ; # small y
|
||||
DA D0B7 ; # small z
|
||||
DB D188 ; # small sh
|
||||
DC D18D ; # small e
|
||||
DD D189 ; # small shch
|
||||
DE D187 ; # small ch
|
||||
DF D18A ; # small hard sign
|
||||
|
||||
E0 D0AE ; # capital YU
|
||||
E1 D090 ; # capital A
|
||||
E2 D091 ; # capital B
|
||||
E3 D0A6 ; # capital TS
|
||||
E4 D094 ; # capital D
|
||||
E5 D095 ; # capital YE
|
||||
E6 D0A4 ; # capital F
|
||||
E7 D093 ; # capital G
|
||||
E8 D0A5 ; # capital KH
|
||||
E9 D098 ; # capital I
|
||||
EA D099 ; # capital J
|
||||
EB D09A ; # capital K
|
||||
EC D09B ; # capital L
|
||||
ED D09C ; # capital M
|
||||
EE D09D ; # capital N
|
||||
EF D09E ; # capital O
|
||||
|
||||
F0 D09F ; # capital P
|
||||
F1 D0AF ; # capital YA
|
||||
F2 D0A0 ; # capital R
|
||||
F3 D0A1 ; # capital S
|
||||
F4 D0A2 ; # capital T
|
||||
F5 D0A3 ; # capital U
|
||||
F6 D096 ; # capital ZH
|
||||
F7 D092 ; # capital V
|
||||
F8 D0AC ; # capital soft sign
|
||||
F9 D0AB ; # capital Y
|
||||
FA D097 ; # capital Z
|
||||
FB D0A8 ; # capital SH
|
||||
FC D0AD ; # capital E
|
||||
FD D0A9 ; # capital SHCH
|
||||
FE D0A7 ; # capital CH
|
||||
FF D0AA ; # capital hard sign
|
||||
}
|
||||
103
nginx/conf.d/ganool/nginx/ngx1/nginx/koi-win
Normal file
103
nginx/conf.d/ganool/nginx/ngx1/nginx/koi-win
Normal file
@@ -0,0 +1,103 @@
|
||||
|
||||
charset_map koi8-r windows-1251 {
|
||||
|
||||
80 88 ; # euro
|
||||
|
||||
95 95 ; # bullet
|
||||
|
||||
9A A0 ; #
|
||||
|
||||
9E B7 ; # ·
|
||||
|
||||
A3 B8 ; # small yo
|
||||
A4 BA ; # small Ukrainian ye
|
||||
|
||||
A6 B3 ; # small Ukrainian i
|
||||
A7 BF ; # small Ukrainian yi
|
||||
|
||||
AD B4 ; # small Ukrainian soft g
|
||||
AE A2 ; # small Byelorussian short u
|
||||
|
||||
B0 B0 ; # °
|
||||
|
||||
B3 A8 ; # capital YO
|
||||
B4 AA ; # capital Ukrainian YE
|
||||
|
||||
B6 B2 ; # capital Ukrainian I
|
||||
B7 AF ; # capital Ukrainian YI
|
||||
|
||||
B9 B9 ; # numero sign
|
||||
|
||||
BD A5 ; # capital Ukrainian soft G
|
||||
BE A1 ; # capital Byelorussian short U
|
||||
|
||||
BF A9 ; # (C)
|
||||
|
||||
C0 FE ; # small yu
|
||||
C1 E0 ; # small a
|
||||
C2 E1 ; # small b
|
||||
C3 F6 ; # small ts
|
||||
C4 E4 ; # small d
|
||||
C5 E5 ; # small ye
|
||||
C6 F4 ; # small f
|
||||
C7 E3 ; # small g
|
||||
C8 F5 ; # small kh
|
||||
C9 E8 ; # small i
|
||||
CA E9 ; # small j
|
||||
CB EA ; # small k
|
||||
CC EB ; # small l
|
||||
CD EC ; # small m
|
||||
CE ED ; # small n
|
||||
CF EE ; # small o
|
||||
|
||||
D0 EF ; # small p
|
||||
D1 FF ; # small ya
|
||||
D2 F0 ; # small r
|
||||
D3 F1 ; # small s
|
||||
D4 F2 ; # small t
|
||||
D5 F3 ; # small u
|
||||
D6 E6 ; # small zh
|
||||
D7 E2 ; # small v
|
||||
D8 FC ; # small soft sign
|
||||
D9 FB ; # small y
|
||||
DA E7 ; # small z
|
||||
DB F8 ; # small sh
|
||||
DC FD ; # small e
|
||||
DD F9 ; # small shch
|
||||
DE F7 ; # small ch
|
||||
DF FA ; # small hard sign
|
||||
|
||||
E0 DE ; # capital YU
|
||||
E1 C0 ; # capital A
|
||||
E2 C1 ; # capital B
|
||||
E3 D6 ; # capital TS
|
||||
E4 C4 ; # capital D
|
||||
E5 C5 ; # capital YE
|
||||
E6 D4 ; # capital F
|
||||
E7 C3 ; # capital G
|
||||
E8 D5 ; # capital KH
|
||||
E9 C8 ; # capital I
|
||||
EA C9 ; # capital J
|
||||
EB CA ; # capital K
|
||||
EC CB ; # capital L
|
||||
ED CC ; # capital M
|
||||
EE CD ; # capital N
|
||||
EF CE ; # capital O
|
||||
|
||||
F0 CF ; # capital P
|
||||
F1 DF ; # capital YA
|
||||
F2 D0 ; # capital R
|
||||
F3 D1 ; # capital S
|
||||
F4 D2 ; # capital T
|
||||
F5 D3 ; # capital U
|
||||
F6 C6 ; # capital ZH
|
||||
F7 C2 ; # capital V
|
||||
F8 DC ; # capital soft sign
|
||||
F9 DB ; # capital Y
|
||||
FA C7 ; # capital Z
|
||||
FB D8 ; # capital SH
|
||||
FC DD ; # capital E
|
||||
FD D9 ; # capital SHCH
|
||||
FE D7 ; # capital CH
|
||||
FF DA ; # capital hard sign
|
||||
}
|
||||
89
nginx/conf.d/ganool/nginx/ngx1/nginx/mime.types
Normal file
89
nginx/conf.d/ganool/nginx/ngx1/nginx/mime.types
Normal file
@@ -0,0 +1,89 @@
|
||||
|
||||
types {
|
||||
text/html html htm shtml;
|
||||
text/css css;
|
||||
text/xml xml;
|
||||
image/gif gif;
|
||||
image/jpeg jpeg jpg;
|
||||
application/javascript js;
|
||||
application/atom+xml atom;
|
||||
application/rss+xml rss;
|
||||
|
||||
text/mathml mml;
|
||||
text/plain txt;
|
||||
text/vnd.sun.j2me.app-descriptor jad;
|
||||
text/vnd.wap.wml wml;
|
||||
text/x-component htc;
|
||||
|
||||
image/png png;
|
||||
image/tiff tif tiff;
|
||||
image/vnd.wap.wbmp wbmp;
|
||||
image/x-icon ico;
|
||||
image/x-jng jng;
|
||||
image/x-ms-bmp bmp;
|
||||
image/svg+xml svg svgz;
|
||||
image/webp webp;
|
||||
|
||||
application/font-woff woff;
|
||||
application/java-archive jar war ear;
|
||||
application/json json;
|
||||
application/mac-binhex40 hqx;
|
||||
application/msword doc;
|
||||
application/pdf pdf;
|
||||
application/postscript ps eps ai;
|
||||
application/rtf rtf;
|
||||
application/vnd.apple.mpegurl m3u8;
|
||||
application/vnd.ms-excel xls;
|
||||
application/vnd.ms-fontobject eot;
|
||||
application/vnd.ms-powerpoint ppt;
|
||||
application/vnd.wap.wmlc wmlc;
|
||||
application/vnd.google-earth.kml+xml kml;
|
||||
application/vnd.google-earth.kmz kmz;
|
||||
application/x-7z-compressed 7z;
|
||||
application/x-cocoa cco;
|
||||
application/x-java-archive-diff jardiff;
|
||||
application/x-java-jnlp-file jnlp;
|
||||
application/x-makeself run;
|
||||
application/x-perl pl pm;
|
||||
application/x-pilot prc pdb;
|
||||
application/x-rar-compressed rar;
|
||||
application/x-redhat-package-manager rpm;
|
||||
application/x-sea sea;
|
||||
application/x-shockwave-flash swf;
|
||||
application/x-stuffit sit;
|
||||
application/x-tcl tcl tk;
|
||||
application/x-x509-ca-cert der pem crt;
|
||||
application/x-xpinstall xpi;
|
||||
application/xhtml+xml xhtml;
|
||||
application/xspf+xml xspf;
|
||||
application/zip zip;
|
||||
|
||||
application/octet-stream bin exe dll;
|
||||
application/octet-stream deb;
|
||||
application/octet-stream dmg;
|
||||
application/octet-stream iso img;
|
||||
application/octet-stream msi msp msm;
|
||||
|
||||
application/vnd.openxmlformats-officedocument.wordprocessingml.document docx;
|
||||
application/vnd.openxmlformats-officedocument.spreadsheetml.sheet xlsx;
|
||||
application/vnd.openxmlformats-officedocument.presentationml.presentation pptx;
|
||||
|
||||
audio/midi mid midi kar;
|
||||
audio/mpeg mp3;
|
||||
audio/ogg ogg;
|
||||
audio/x-m4a m4a;
|
||||
audio/x-realaudio ra;
|
||||
|
||||
video/3gpp 3gpp 3gp;
|
||||
video/mp2t ts;
|
||||
video/mp4 mp4;
|
||||
video/mpeg mpeg mpg;
|
||||
video/quicktime mov;
|
||||
video/webm webm;
|
||||
video/x-flv flv;
|
||||
video/x-m4v m4v;
|
||||
video/x-mng mng;
|
||||
video/x-ms-asf asx asf;
|
||||
video/x-ms-wmv wmv;
|
||||
video/x-msvideo avi;
|
||||
}
|
||||
79
nginx/conf.d/ganool/nginx/ngx1/nginx/nginx.conf
Normal file
79
nginx/conf.d/ganool/nginx/ngx1/nginx/nginx.conf
Normal file
@@ -0,0 +1,79 @@
|
||||
user nginx;
|
||||
worker_processes auto;
|
||||
|
||||
error_log off;
|
||||
|
||||
pid /var/run/nginx.pid;
|
||||
|
||||
events {
|
||||
worker_connections 10240; # increase for busier servers
|
||||
use epoll; # you should use epoll here for Linux kernels 2.6.x
|
||||
multi_accept on;
|
||||
accept_mutex off;
|
||||
}
|
||||
|
||||
worker_rlimit_nofile 65535;
|
||||
worker_priority -10;
|
||||
|
||||
http {
|
||||
include /etc/nginx/mime.types;
|
||||
default_type application/octet-stream;
|
||||
|
||||
server_tokens off;
|
||||
sendfile on;
|
||||
sendfile_max_chunk 10240k;
|
||||
aio threads=default;
|
||||
directio 64m; #Serve Large files like media files using directio
|
||||
|
||||
tcp_nopush on;
|
||||
tcp_nodelay on;
|
||||
|
||||
proxy_http_version 1.1;
|
||||
proxy_set_header Connection "";
|
||||
|
||||
server_name_in_redirect on;
|
||||
server_names_hash_max_size 2048;
|
||||
server_names_hash_bucket_size 2048;
|
||||
|
||||
# timeouts
|
||||
ignore_invalid_headers on;
|
||||
client_header_timeout 90;
|
||||
client_body_timeout 90;
|
||||
send_timeout 90;
|
||||
reset_timedout_connection on;
|
||||
client_body_in_file_only clean;
|
||||
keepalive_requests 1024;
|
||||
keepalive_timeout 10s;
|
||||
|
||||
# gzip compression
|
||||
gzip on;
|
||||
gzip_vary on;
|
||||
gzip_disable "MSIE [1-6]\.(?!.*SV1)";
|
||||
gzip_proxied any;
|
||||
gzip_min_length 1024;
|
||||
gzip_http_version 1.1;
|
||||
gzip_comp_level 6;
|
||||
gzip_buffers 64 8k;
|
||||
gzip_types text/plain text/xml image/svg+xml application/rss+xml application/atom+xml application/xhtml+xml text/css application/json text/javascript application/x-javascript application/font-otf application/font-ttf;
|
||||
|
||||
# buffers
|
||||
connection_pool_size 256;
|
||||
client_body_buffer_size 128K;
|
||||
client_header_buffer_size 16k;
|
||||
large_client_header_buffers 4 32k;
|
||||
request_pool_size 4k;
|
||||
output_buffers 4 32k;
|
||||
postpone_output 1460;
|
||||
client_max_body_size 64M;
|
||||
|
||||
# fastcgi settings
|
||||
fastcgi_buffers 16 16k;
|
||||
fastcgi_buffer_size 32k;
|
||||
# the below options depend on theoretical maximum of your PHP script run-time
|
||||
fastcgi_read_timeout 600s;
|
||||
fastcgi_send_timeout 600s;
|
||||
|
||||
include /etc/nginx/conf.d/*.conf;
|
||||
include /etc/nginx/vhosts.d/*.conf;
|
||||
|
||||
}
|
||||
88
nginx/conf.d/ganool/nginx/ngx1/nginx/nginx.conf.bkp
Normal file
88
nginx/conf.d/ganool/nginx/ngx1/nginx/nginx.conf.bkp
Normal file
@@ -0,0 +1,88 @@
|
||||
user nginx;
|
||||
worker_processes auto;
|
||||
|
||||
error_log off;
|
||||
|
||||
pid /var/run/nginx.pid;
|
||||
|
||||
events {
|
||||
worker_connections 2048; # increase for busier servers
|
||||
use epoll; # you should use epoll here for Linux kernels 2.6.x
|
||||
multi_accept on;
|
||||
accept_mutex off;
|
||||
}
|
||||
|
||||
worker_rlimit_nofile 20480;
|
||||
#worker_priority -5;
|
||||
|
||||
http {
|
||||
include /etc/nginx/mime.types;
|
||||
default_type application/octet-stream;
|
||||
|
||||
log_format main '$remote_addr - $remote_user [$time_local] "$request" '
|
||||
'$status $body_bytes_sent "$http_referer" '
|
||||
'"$http_user_agent" "$http_x_forwarded_for"';
|
||||
|
||||
server_tokens off;
|
||||
sendfile on;
|
||||
sendfile_max_chunk 512k;
|
||||
aio threads=default;
|
||||
directio 64m; #Serve Large files like media files using directio
|
||||
|
||||
tcp_nopush on;
|
||||
tcp_nodelay on;
|
||||
|
||||
proxy_http_version 1.1;
|
||||
proxy_set_header Connection "";
|
||||
|
||||
server_name_in_redirect on;
|
||||
server_names_hash_max_size 1024;
|
||||
server_names_hash_bucket_size 1024;
|
||||
|
||||
# timeouts
|
||||
ignore_invalid_headers on;
|
||||
client_header_timeout 300;
|
||||
client_body_timeout 300;
|
||||
send_timeout 300;
|
||||
reset_timedout_connection on;
|
||||
client_body_in_file_only clean;
|
||||
keepalive_timeout 10 5;
|
||||
|
||||
# gzip compression
|
||||
gzip on;
|
||||
gzip_vary on;
|
||||
gzip_disable "MSIE [1-6]\.(?!.*SV1)";
|
||||
gzip_proxied any;
|
||||
gzip_min_length 1024;
|
||||
gzip_http_version 1.1;
|
||||
gzip_comp_level 6;
|
||||
gzip_buffers 64 8k;
|
||||
gzip_types text/plain text/xml text/css application/x-javascript application/xml image/png image/x-icon image/gif image/jpeg application/xml+rss text/javascript application/atom+xml application/javascript application/json;
|
||||
|
||||
# buffers
|
||||
connection_pool_size 256;
|
||||
client_body_buffer_size 128K;
|
||||
client_header_buffer_size 16k;
|
||||
large_client_header_buffers 4 32k;
|
||||
request_pool_size 4k;
|
||||
output_buffers 4 32k;
|
||||
postpone_output 1460;
|
||||
client_max_body_size 64M;
|
||||
|
||||
# fastcgi settings
|
||||
fastcgi_buffers 16 16k;
|
||||
fastcgi_buffer_size 32k;
|
||||
# the below options depend on theoretical maximum of your PHP script run-time
|
||||
fastcgi_read_timeout 300;
|
||||
fastcgi_send_timeout 300;
|
||||
|
||||
# open file cache
|
||||
open_file_cache max=4096 inactive=5m;
|
||||
open_file_cache_valid 10m;
|
||||
open_file_cache_min_uses 2;
|
||||
open_file_cache_errors on;
|
||||
|
||||
include /etc/nginx/conf.d/*.conf;
|
||||
include /etc/nginx/vhosts.d/*.conf;
|
||||
|
||||
}
|
||||
BIN
nginx/conf.d/ganool/nginx/ngx1/nginx/ngx.tgz
Normal file
BIN
nginx/conf.d/ganool/nginx/ngx1/nginx/ngx.tgz
Normal file
Binary file not shown.
4
nginx/conf.d/ganool/nginx/ngx1/nginx/proxy.conf
Normal file
4
nginx/conf.d/ganool/nginx/ngx1/nginx/proxy.conf
Normal file
@@ -0,0 +1,4 @@
|
||||
proxy_redirect off;
|
||||
proxy_set_header Host $host:$server_port;
|
||||
proxy_set_header X-Real-IP $remote_addr;
|
||||
proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
|
||||
29
nginx/conf.d/ganool/nginx/ngx1/nginx/proxy.inc
Normal file
29
nginx/conf.d/ganool/nginx/ngx1/nginx/proxy.inc
Normal file
@@ -0,0 +1,29 @@
|
||||
### proxy file starts here ###
|
||||
# More info here: http://wiki.nginx.org/HttpProxyModule
|
||||
|
||||
proxy_buffering off;
|
||||
proxy_connect_timeout 90s;
|
||||
proxy_send_timeout 900;
|
||||
proxy_read_timeout 900;
|
||||
proxy_buffer_size 64k;
|
||||
proxy_buffers 16 32k;
|
||||
proxy_busy_buffers_size 64k;
|
||||
proxy_temp_file_write_size 64k;
|
||||
proxy_pass_header Set-Cookie;
|
||||
proxy_redirect off;
|
||||
proxy_hide_header Vary;
|
||||
proxy_hide_header X-Powered-By;
|
||||
proxy_set_header Accept-Encoding '';
|
||||
#If you want to get the cache-control and expire headers from apache, comment out 'proxy_ignore_headers' and uncomment 'proxy_pass_header Expires;' and 'proxy_pass_header Cache-Control
|
||||
proxy_pass_header Expires;
|
||||
proxy_pass_header Cache-Control;
|
||||
proxy_ignore_headers Cache-Control Expires;
|
||||
proxy_set_header Referer $http_referer;
|
||||
proxy_set_header Host $host;
|
||||
proxy_set_header Cookie $http_cookie;
|
||||
#proxy_set_header X-Real-IP $remote_addr;
|
||||
#proxy_set_header X-Forwarded-Host $host;
|
||||
#proxy_set_header X-Forwarded-Server $host;
|
||||
#proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
|
||||
|
||||
### proxy file ends here ###
|
||||
17
nginx/conf.d/ganool/nginx/ngx1/nginx/scgi_params
Normal file
17
nginx/conf.d/ganool/nginx/ngx1/nginx/scgi_params
Normal file
@@ -0,0 +1,17 @@
|
||||
|
||||
scgi_param REQUEST_METHOD $request_method;
|
||||
scgi_param REQUEST_URI $request_uri;
|
||||
scgi_param QUERY_STRING $query_string;
|
||||
scgi_param CONTENT_TYPE $content_type;
|
||||
|
||||
scgi_param DOCUMENT_URI $document_uri;
|
||||
scgi_param DOCUMENT_ROOT $document_root;
|
||||
scgi_param SCGI 1;
|
||||
scgi_param SERVER_PROTOCOL $server_protocol;
|
||||
scgi_param REQUEST_SCHEME $scheme;
|
||||
scgi_param HTTPS $https if_not_empty;
|
||||
|
||||
scgi_param REMOTE_ADDR $remote_addr;
|
||||
scgi_param REMOTE_PORT $remote_port;
|
||||
scgi_param SERVER_PORT $server_port;
|
||||
scgi_param SERVER_NAME $server_name;
|
||||
17
nginx/conf.d/ganool/nginx/ngx1/nginx/uwsgi_params
Normal file
17
nginx/conf.d/ganool/nginx/ngx1/nginx/uwsgi_params
Normal file
@@ -0,0 +1,17 @@
|
||||
|
||||
uwsgi_param QUERY_STRING $query_string;
|
||||
uwsgi_param REQUEST_METHOD $request_method;
|
||||
uwsgi_param CONTENT_TYPE $content_type;
|
||||
uwsgi_param CONTENT_LENGTH $content_length;
|
||||
|
||||
uwsgi_param REQUEST_URI $request_uri;
|
||||
uwsgi_param PATH_INFO $document_uri;
|
||||
uwsgi_param DOCUMENT_ROOT $document_root;
|
||||
uwsgi_param SERVER_PROTOCOL $server_protocol;
|
||||
uwsgi_param REQUEST_SCHEME $scheme;
|
||||
uwsgi_param HTTPS $https if_not_empty;
|
||||
|
||||
uwsgi_param REMOTE_ADDR $remote_addr;
|
||||
uwsgi_param REMOTE_PORT $remote_port;
|
||||
uwsgi_param SERVER_PORT $server_port;
|
||||
uwsgi_param SERVER_NAME $server_name;
|
||||
@@ -0,0 +1,47 @@
|
||||
server {
|
||||
listen 8197;
|
||||
|
||||
#Logging
|
||||
access_log off;
|
||||
error_log /var/log/nginx/blazefile.error.log;
|
||||
|
||||
server_name blazefile.co www.blazefile.co;
|
||||
|
||||
location / {
|
||||
location ~.*\.(3gp|gif|jpg|jpeg|png|ico|wmv|avi|asf|asx|mpg|mpeg|mp4|pls|mp3|mid|wav|swf|flv|html|htm|txt|js|css|exe|zip|tar|rar|gz|tgz|bz2|uha|7z|doc|docx|xls|xlsx|pdf|iso|woff|ttf|svg|eot)\$ {
|
||||
expires 7d;#Comment this out if you are using the apache backend cache-control/expires headers.
|
||||
try_files \$uri \@backend;
|
||||
}
|
||||
|
||||
error_page 405 = \@backend;
|
||||
error_page 500 = \@custom;
|
||||
add_header X-Cache "HIT from Backend";
|
||||
|
||||
proxy_pass http://10.208.99.27:80;
|
||||
include proxy.inc;
|
||||
}
|
||||
|
||||
location \@backend {
|
||||
internal;
|
||||
proxy_pass http://10.208.99.27:80;
|
||||
|
||||
include proxy.inc;
|
||||
}
|
||||
|
||||
location \@custom {
|
||||
internal;
|
||||
proxy_pass http://10.208.99.27:80;
|
||||
include proxy.inc;
|
||||
}
|
||||
|
||||
location ~ .*\.(php|jsp|cgi|pl|py)?\$ {
|
||||
proxy_pass http://10.208.99.27:80;
|
||||
include proxy.inc;
|
||||
}
|
||||
|
||||
location ~ /\.ht {
|
||||
deny all;
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
@@ -0,0 +1,46 @@
|
||||
server {
|
||||
listen 8197;
|
||||
server_name cmovieshd.ru www.cmovieshd.ru;
|
||||
|
||||
#access_log /var/log/nginx/goon-access_log;
|
||||
#error_log /var/log/nginx/goon-error_log;
|
||||
access_log off;
|
||||
error_log off;
|
||||
|
||||
location / {
|
||||
location ~.*\.(3gp|gif|jpg|jpeg|png|ico|wmv|avi|asf|asx|mpg|mpeg|mp4|pls|mp3|mid|wav|swf|flv|html|htm|txt|js|css|exe|zip|tar|rar|gz|tgz|bz2|uha|7z|doc|docx|xls|xlsx|pdf|iso|woff|ttf|svg|eot)\$ {
|
||||
expires 7d;#Comment this out if you are using the apache backend cache-control/expires headers.
|
||||
try_files \$uri \@backend;
|
||||
}
|
||||
|
||||
error_page 405 = \@backend;
|
||||
error_page 500 = \@custom;
|
||||
add_header X-Cache "HIT from Backend";
|
||||
|
||||
proxy_pass http://10.208.99.25:80;
|
||||
include proxy.inc;
|
||||
}
|
||||
|
||||
location \@backend {
|
||||
internal;
|
||||
proxy_pass http://10.208.99.25:80;
|
||||
|
||||
include proxy.inc;
|
||||
}
|
||||
|
||||
location \@custom {
|
||||
internal;
|
||||
proxy_pass http://10.208.99.25:80;
|
||||
include proxy.inc;
|
||||
}
|
||||
|
||||
location ~ .*\.(php|jsp|cgi|pl|py)?\$ {
|
||||
proxy_pass http://10.208.99.25:80;
|
||||
include proxy.inc;
|
||||
}
|
||||
|
||||
location ~ /\.ht {
|
||||
deny all;
|
||||
}
|
||||
|
||||
}
|
||||
@@ -0,0 +1,44 @@
|
||||
server {
|
||||
listen 8197;
|
||||
server_name cokeandpopcorn.click www.cokeandpopcorn.click;
|
||||
|
||||
access_log /var/log/nginx/access_log;
|
||||
error_log /var/log/nginx/error_log;
|
||||
|
||||
location / {
|
||||
location ~.*\.(3gp|gif|jpg|jpeg|png|ico|wmv|avi|asf|asx|mpg|mpeg|mp4|pls|mp3|mid|wav|swf|flv|html|htm|txt|js|css|exe|zip|tar|rar|gz|tgz|bz2|uha|7z|doc|docx|xls|xlsx|pdf|iso|woff|ttf|svg|eot)\$ {
|
||||
expires 7d;#Comment this out if you are using the apache backend cache-control/expires headers.
|
||||
try_files \$uri \@backend;
|
||||
}
|
||||
|
||||
error_page 405 = \@backend;
|
||||
error_page 500 = \@custom;
|
||||
add_header X-Cache "HIT from Backend";
|
||||
|
||||
proxy_pass http://10.208.99.25:80;
|
||||
include proxy.inc;
|
||||
}
|
||||
|
||||
location \@backend {
|
||||
internal;
|
||||
proxy_pass http://10.208.99.25:80;
|
||||
|
||||
include proxy.inc;
|
||||
}
|
||||
|
||||
location \@custom {
|
||||
internal;
|
||||
proxy_pass http://10.208.99.25:80;
|
||||
include proxy.inc;
|
||||
}
|
||||
|
||||
location ~ .*\.(php|jsp|cgi|pl|py)?\$ {
|
||||
proxy_pass http://10.208.99.25:80;
|
||||
include proxy.inc;
|
||||
}
|
||||
|
||||
location ~ /\.ht {
|
||||
deny all;
|
||||
}
|
||||
|
||||
}
|
||||
@@ -0,0 +1,8 @@
|
||||
server {
|
||||
listen 8197;
|
||||
server_name 176.123.26.42;
|
||||
|
||||
location / {
|
||||
rewrite ^/(.*)$ http://hdwallpapers.live/$1 permanent;
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,44 @@
|
||||
server {
|
||||
listen 80;
|
||||
server_name goon.to www.goon.to;
|
||||
|
||||
access_log off;
|
||||
error_log off;
|
||||
|
||||
location / {
|
||||
location ~.*\.(3gp|gif|jpg|jpeg|png|ico|wmv|avi|asf|asx|mpg|mpeg|mp4|pls|mp3|mid|wav|swf|flv|html|htm|txt|js|css|exe|zip|tar|rar|gz|tgz|bz2|uha|7z|doc|docx|xls|xlsx|pdf|iso|woff|ttf|svg|eot)\$ {
|
||||
expires 7d;#Comment this out if you are using the apache backend cache-control/expires headers.
|
||||
try_files \$uri \@backend;
|
||||
}
|
||||
|
||||
error_page 405 = \@backend;
|
||||
error_page 500 = \@custom;
|
||||
add_header X-Cache "HIT from Backend";
|
||||
|
||||
proxy_pass http://10.10.11.1:80;
|
||||
include proxy.inc;
|
||||
}
|
||||
|
||||
location \@backend {
|
||||
internal;
|
||||
proxy_pass http://10.10.11.1:80;
|
||||
|
||||
include proxy.inc;
|
||||
}
|
||||
|
||||
location \@custom {
|
||||
internal;
|
||||
proxy_pass http://10.10.11.1:80;
|
||||
include proxy.inc;
|
||||
}
|
||||
|
||||
location ~ .*\.(php|jsp|cgi|pl|py)?\$ {
|
||||
proxy_pass http://10.10.11.1:80;
|
||||
include proxy.inc;
|
||||
}
|
||||
|
||||
location ~ /\.ht {
|
||||
deny all;
|
||||
}
|
||||
|
||||
}
|
||||
@@ -0,0 +1,44 @@
|
||||
server {
|
||||
listen 80;
|
||||
server_name goon.to www.goon.to;
|
||||
|
||||
access_log off;
|
||||
error_log off;
|
||||
|
||||
location / {
|
||||
location ~.*\.(3gp|gif|jpg|jpeg|png|ico|wmv|avi|asf|asx|mpg|mpeg|mp4|pls|mp3|mid|wav|swf|flv|html|htm|txt|js|css|exe|zip|tar|rar|gz|tgz|bz2|uha|7z|doc|docx|xls|xlsx|pdf|iso|woff|ttf|svg|eot)\$ {
|
||||
expires 7d;#Comment this out if you are using the apache backend cache-control/expires headers.
|
||||
try_files \$uri \@backend;
|
||||
}
|
||||
|
||||
error_page 405 = \@backend;
|
||||
error_page 500 = \@custom;
|
||||
add_header X-Cache "HIT from Backend";
|
||||
|
||||
proxy_pass http://86.104.210.218:65432;
|
||||
include proxy.inc;
|
||||
}
|
||||
|
||||
location \@backend {
|
||||
internal;
|
||||
proxy_pass http://86.104.210.218:65432;
|
||||
|
||||
include proxy.inc;
|
||||
}
|
||||
|
||||
location \@custom {
|
||||
internal;
|
||||
proxy_pass http://86.104.210.218:65432;
|
||||
include proxy.inc;
|
||||
}
|
||||
|
||||
location ~ .*\.(php|jsp|cgi|pl|py)?\$ {
|
||||
proxy_pass http://86.104.210.218:65432;
|
||||
include proxy.inc;
|
||||
}
|
||||
|
||||
location ~ /\.ht {
|
||||
deny all;
|
||||
}
|
||||
|
||||
}
|
||||
@@ -0,0 +1,47 @@
|
||||
server {
|
||||
listen 80;
|
||||
|
||||
#Logging
|
||||
access_log off;
|
||||
error_log off;
|
||||
|
||||
server_name linkgen.to www.linkgen.to;
|
||||
|
||||
location / {
|
||||
location ~.*\.(3gp|gif|jpg|jpeg|png|ico|wmv|avi|asf|asx|mpg|mpeg|mp4|pls|mp3|mid|wav|swf|flv|html|htm|txt|js|css|exe|zip|tar|rar|gz|tgz|bz2|uha|7z|doc|docx|xls|xlsx|pdf|iso|woff|ttf|svg|eot)\$ {
|
||||
expires 7d;#Comment this out if you are using the apache backend cache-control/expires headers.
|
||||
try_files \$uri \@backend;
|
||||
}
|
||||
|
||||
error_page 405 = \@backend;
|
||||
error_page 500 = \@custom;
|
||||
add_header X-Cache "HIT from Backend";
|
||||
|
||||
proxy_pass http://10.208.99.26:100;
|
||||
include proxy.inc;
|
||||
}
|
||||
|
||||
location \@backend {
|
||||
internal;
|
||||
proxy_pass http://10.208.99.26:100;
|
||||
|
||||
include proxy.inc;
|
||||
}
|
||||
|
||||
location \@custom {
|
||||
internal;
|
||||
proxy_pass http://10.208.99.26:100;
|
||||
include proxy.inc;
|
||||
}
|
||||
|
||||
location ~ .*\.(php|jsp|cgi|pl|py)?\$ {
|
||||
proxy_pass http://10.208.99.26:100;
|
||||
include proxy.inc;
|
||||
}
|
||||
|
||||
location ~ /\.ht {
|
||||
deny all;
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
@@ -0,0 +1,44 @@
|
||||
server {
|
||||
listen 8197;
|
||||
server_name download.cokeandpopcorn.click;
|
||||
|
||||
access_log off;
|
||||
error_log off;
|
||||
|
||||
location / {
|
||||
location ~.*\.(3gp|gif|jpg|jpeg|png|ico|wmv|avi|asf|asx|mpg|mpeg|mp4|pls|mp3|mid|wav|swf|flv|html|htm|txt|js|css|exe|zip|tar|rar|gz|tgz|bz2|uha|7z|doc|docx|xls|xlsx|pdf|iso|woff|ttf|svg|eot)\$ {
|
||||
expires 7d;#Comment this out if you are using the apache backend cache-control/expires headers.
|
||||
try_files \$uri \@backend;
|
||||
}
|
||||
|
||||
error_page 405 = \@backend;
|
||||
error_page 500 = \@custom;
|
||||
add_header X-Cache "HIT from Backend";
|
||||
|
||||
proxy_pass http://10.208.99.25:80;
|
||||
include proxy.inc;
|
||||
}
|
||||
|
||||
location \@backend {
|
||||
internal;
|
||||
proxy_pass http://10.208.99.25:80;
|
||||
|
||||
include proxy.inc;
|
||||
}
|
||||
|
||||
location \@custom {
|
||||
internal;
|
||||
proxy_pass http://10.208.99.25:80;
|
||||
include proxy.inc;
|
||||
}
|
||||
|
||||
location ~ .*\.(php|jsp|cgi|pl|py)?\$ {
|
||||
proxy_pass http://10.208.99.25:80;
|
||||
include proxy.inc;
|
||||
}
|
||||
|
||||
location ~ /\.ht {
|
||||
deny all;
|
||||
}
|
||||
|
||||
}
|
||||
@@ -0,0 +1,47 @@
|
||||
server {
|
||||
listen 8197;
|
||||
|
||||
#Logging
|
||||
access_log off;
|
||||
error_log off;
|
||||
|
||||
server_name file.rocks www.file.rocks;
|
||||
|
||||
location / {
|
||||
location ~.*\.(3gp|gif|jpg|jpeg|png|ico|wmv|avi|asf|asx|mpg|mpeg|mp4|pls|mp3|mid|wav|swf|flv|html|htm|txt|js|css|exe|zip|tar|rar|gz|tgz|bz2|uha|7z|doc|docx|xls|xlsx|pdf|iso|woff|ttf|svg|eot)\$ {
|
||||
expires 7d;#Comment this out if you are using the apache backend cache-control/expires headers.
|
||||
try_files \$uri \@backend;
|
||||
}
|
||||
|
||||
error_page 405 = \@backend;
|
||||
error_page 500 = \@custom;
|
||||
add_header X-Cache "HIT from Backend";
|
||||
|
||||
proxy_pass http://10.208.99.26:99;
|
||||
include proxy.inc;
|
||||
}
|
||||
|
||||
location \@backend {
|
||||
internal;
|
||||
proxy_pass http://10.208.99.26:99;
|
||||
|
||||
include proxy.inc;
|
||||
}
|
||||
|
||||
location \@custom {
|
||||
internal;
|
||||
proxy_pass http://10.208.99.26:99;
|
||||
include proxy.inc;
|
||||
}
|
||||
|
||||
location ~ .*\.(php|jsp|cgi|pl|py)?\$ {
|
||||
proxy_pass http://10.208.99.26:99;
|
||||
include proxy.inc;
|
||||
}
|
||||
|
||||
location ~ /\.ht {
|
||||
deny all;
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
@@ -0,0 +1,14 @@
|
||||
server {
|
||||
access_log off;
|
||||
error_log off;
|
||||
|
||||
listen 8197;
|
||||
|
||||
server_name fmoviesfree.com www.fmoviesfree.com;
|
||||
|
||||
location / {
|
||||
if ($http_host ~* "^(www\.)?fmoviesfree\.com$") {
|
||||
rewrite ^/(.*)$ http://cokeandpopcorn.click/$1 permanent;
|
||||
}
|
||||
}
|
||||
}
|
||||
15
nginx/conf.d/ganool/nginx/ngx1/nginx/vhosts.d/ganool.ag.conf
Normal file
15
nginx/conf.d/ganool/nginx/ngx1/nginx/vhosts.d/ganool.ag.conf
Normal file
@@ -0,0 +1,15 @@
|
||||
server {
|
||||
|
||||
access_log off;
|
||||
error_log off;
|
||||
|
||||
listen 8197;
|
||||
|
||||
server_name ganool.ag www.ganool.ag;
|
||||
|
||||
location / {
|
||||
if ($http_host ~* "^(www\.)?ganool\.ag$") {
|
||||
rewrite ^/(.*)$ https://goody.to/$1 permanent;
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,15 @@
|
||||
server {
|
||||
|
||||
access_log off;
|
||||
error_log off;
|
||||
|
||||
listen 8197;
|
||||
|
||||
server_name ganool.com www.ganool.com;
|
||||
|
||||
location / {
|
||||
if ($http_host ~* "^(www\.)?ganool\.com$") {
|
||||
rewrite ^/(.*)$ https://goody.to/$1 permanent;
|
||||
}
|
||||
}
|
||||
}
|
||||
46
nginx/conf.d/ganool/nginx/ngx1/nginx/vhosts.d/ganool.ee.conf
Normal file
46
nginx/conf.d/ganool/nginx/ngx1/nginx/vhosts.d/ganool.ee.conf
Normal file
@@ -0,0 +1,46 @@
|
||||
server {
|
||||
listen 8197;
|
||||
server_name ganool.ee www.ganool.ee;
|
||||
|
||||
#access_log /var/log/nginx/goon-access_log;
|
||||
#error_log /var/log/nginx/goon-error_log;
|
||||
access_log off;
|
||||
error_log off;
|
||||
|
||||
location / {
|
||||
location ~.*\.(3gp|gif|jpg|jpeg|png|ico|wmv|avi|asf|asx|mpg|mpeg|mp4|pls|mp3|mid|wav|swf|flv|html|htm|txt|js|css|exe|zip|tar|rar|gz|tgz|bz2|uha|7z|doc|docx|xls|xlsx|pdf|iso|woff|ttf|svg|eot)\$ {
|
||||
expires 7d;#Comment this out if you are using the apache backend cache-control/expires headers.
|
||||
try_files \$uri \@backend;
|
||||
}
|
||||
|
||||
error_page 405 = \@backend;
|
||||
error_page 500 = \@custom;
|
||||
add_header X-Cache "HIT from Backend";
|
||||
|
||||
proxy_pass http://10.208.99.25:80;
|
||||
include proxy.inc;
|
||||
}
|
||||
|
||||
location \@backend {
|
||||
internal;
|
||||
proxy_pass http://10.208.99.25:80;
|
||||
|
||||
include proxy.inc;
|
||||
}
|
||||
|
||||
location \@custom {
|
||||
internal;
|
||||
proxy_pass http://10.208.99.25:80;
|
||||
include proxy.inc;
|
||||
}
|
||||
|
||||
location ~ .*\.(php|jsp|cgi|pl|py)?\$ {
|
||||
proxy_pass http://10.208.99.25:80;
|
||||
include proxy.inc;
|
||||
}
|
||||
|
||||
location ~ /\.ht {
|
||||
deny all;
|
||||
}
|
||||
|
||||
}
|
||||
15
nginx/conf.d/ganool/nginx/ngx1/nginx/vhosts.d/ganool.is.conf
Normal file
15
nginx/conf.d/ganool/nginx/ngx1/nginx/vhosts.d/ganool.is.conf
Normal file
@@ -0,0 +1,15 @@
|
||||
server {
|
||||
|
||||
access_log off;
|
||||
error_log off;
|
||||
|
||||
listen 8197;
|
||||
|
||||
server_name ganool.is www.ganool.is;
|
||||
|
||||
location / {
|
||||
if ($http_host ~* "^(www\.)?ganool\.is$") {
|
||||
rewrite ^/(.*)$ https://goody.to/$1 permanent;
|
||||
}
|
||||
}
|
||||
}
|
||||
15
nginx/conf.d/ganool/nginx/ngx1/nginx/vhosts.d/ganool.ph.conf
Normal file
15
nginx/conf.d/ganool/nginx/ngx1/nginx/vhosts.d/ganool.ph.conf
Normal file
@@ -0,0 +1,15 @@
|
||||
server {
|
||||
|
||||
access_log off;
|
||||
error_log off;
|
||||
|
||||
listen 8197;
|
||||
|
||||
server_name ganool.ph www.ganool.ph;
|
||||
|
||||
location / {
|
||||
if ($http_host ~* "^(www\.)?ganool\.ph$") {
|
||||
rewrite ^/(.*)$ https://goody.to/$1 permanent;
|
||||
}
|
||||
}
|
||||
}
|
||||
15
nginx/conf.d/ganool/nginx/ngx1/nginx/vhosts.d/ganool.sc.conf
Normal file
15
nginx/conf.d/ganool/nginx/ngx1/nginx/vhosts.d/ganool.sc.conf
Normal file
@@ -0,0 +1,15 @@
|
||||
server {
|
||||
|
||||
access_log off;
|
||||
error_log off;
|
||||
|
||||
listen 8197;
|
||||
|
||||
server_name ganool.sc www.ganool.sc;
|
||||
|
||||
location / {
|
||||
if ($http_host ~* "^(www\.)?ganool\.sc$") {
|
||||
rewrite ^/(.*)$ https://goody.to/$1 permanent;
|
||||
}
|
||||
}
|
||||
}
|
||||
46
nginx/conf.d/ganool/nginx/ngx1/nginx/vhosts.d/ganool.st.conf
Normal file
46
nginx/conf.d/ganool/nginx/ngx1/nginx/vhosts.d/ganool.st.conf
Normal file
@@ -0,0 +1,46 @@
|
||||
server {
|
||||
listen 8197;
|
||||
server_name ganool.st www.ganool.st;
|
||||
|
||||
#access_log /var/log/nginx/goon-access_log;
|
||||
#error_log /var/log/nginx/goon-error_log;
|
||||
access_log off;
|
||||
error_log off;
|
||||
|
||||
location / {
|
||||
location ~.*\.(3gp|gif|jpg|jpeg|png|ico|wmv|avi|asf|asx|mpg|mpeg|mp4|pls|mp3|mid|wav|swf|flv|html|htm|txt|js|css|exe|zip|tar|rar|gz|tgz|bz2|uha|7z|doc|docx|xls|xlsx|pdf|iso|woff|ttf|svg|eot)\$ {
|
||||
expires 7d;#Comment this out if you are using the apache backend cache-control/expires headers.
|
||||
try_files \$uri \@backend;
|
||||
}
|
||||
|
||||
error_page 405 = \@backend;
|
||||
error_page 500 = \@custom;
|
||||
add_header X-Cache "HIT from Backend";
|
||||
|
||||
proxy_pass http://10.208.99.25:80;
|
||||
include proxy.inc;
|
||||
}
|
||||
|
||||
location \@backend {
|
||||
internal;
|
||||
proxy_pass http://10.208.99.25:80;
|
||||
|
||||
include proxy.inc;
|
||||
}
|
||||
|
||||
location \@custom {
|
||||
internal;
|
||||
proxy_pass http://10.208.99.25:80;
|
||||
include proxy.inc;
|
||||
}
|
||||
|
||||
location ~ .*\.(php|jsp|cgi|pl|py)?\$ {
|
||||
proxy_pass http://10.208.99.25:80;
|
||||
include proxy.inc;
|
||||
}
|
||||
|
||||
location ~ /\.ht {
|
||||
deny all;
|
||||
}
|
||||
|
||||
}
|
||||
@@ -0,0 +1,47 @@
|
||||
server {
|
||||
listen 8197;
|
||||
|
||||
#Logging
|
||||
access_log off;
|
||||
error_log off;
|
||||
|
||||
server_name goodmovies.is www.goodmovies.is;
|
||||
|
||||
location / {
|
||||
location ~.*\.(3gp|gif|jpg|jpeg|png|ico|wmv|avi|asf|asx|mpg|mpeg|mp4|pls|mp3|mid|wav|swf|flv|html|htm|txt|js|css|exe|zip|tar|rar|gz|tgz|bz2|uha|7z|doc|docx|xls|xlsx|pdf|iso|woff|ttf|svg|eot)\$ {
|
||||
expires 7d;#Comment this out if you are using the apache backend cache-control/expires headers.
|
||||
try_files \$uri \@backend;
|
||||
}
|
||||
|
||||
error_page 405 = \@backend;
|
||||
error_page 500 = \@custom;
|
||||
add_header X-Cache "HIT from Backend";
|
||||
|
||||
proxy_pass http://10.208.99.26:87;
|
||||
include proxy.inc;
|
||||
}
|
||||
|
||||
location \@backend {
|
||||
internal;
|
||||
proxy_pass http://10.208.99.26:87;
|
||||
|
||||
include proxy.inc;
|
||||
}
|
||||
|
||||
location \@custom {
|
||||
internal;
|
||||
proxy_pass http://10.208.99.26:87;
|
||||
include proxy.inc;
|
||||
}
|
||||
|
||||
location ~ .*\.(php|jsp|cgi|pl|py)?\$ {
|
||||
proxy_pass http://10.208.99.26:87;
|
||||
include proxy.inc;
|
||||
}
|
||||
|
||||
location ~ /\.ht {
|
||||
deny all;
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
14
nginx/conf.d/ganool/nginx/ngx1/nginx/vhosts.d/goody.to.conf
Normal file
14
nginx/conf.d/ganool/nginx/ngx1/nginx/vhosts.d/goody.to.conf
Normal file
@@ -0,0 +1,14 @@
|
||||
server {
|
||||
access_log off;
|
||||
error_log off;
|
||||
|
||||
listen 8197;
|
||||
|
||||
server_name goody.to www.goody.to;
|
||||
|
||||
location / {
|
||||
if ($http_host ~* "^(www\.)?goody\.to$") {
|
||||
rewrite ^/(.*)$ https://ganool.st/$1 permanent;
|
||||
}
|
||||
}
|
||||
}
|
||||
15
nginx/conf.d/ganool/nginx/ngx1/nginx/vhosts.d/goon.to.conf
Normal file
15
nginx/conf.d/ganool/nginx/ngx1/nginx/vhosts.d/goon.to.conf
Normal file
@@ -0,0 +1,15 @@
|
||||
server {
|
||||
|
||||
access_log off;
|
||||
error_log off;
|
||||
|
||||
listen 8197;
|
||||
|
||||
server_name goon.to www.goon.to;
|
||||
|
||||
location / {
|
||||
if ($http_host ~* "^(www\.)?goon\.to$") {
|
||||
rewrite ^/(.*)$ https://goody.to/$1 permanent;
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,46 @@
|
||||
server {
|
||||
listen 8197;
|
||||
server_name gostream.rs www.gostream.rs;
|
||||
|
||||
#access_log /var/log/nginx/goon-access_log;
|
||||
#error_log /var/log/nginx/goon-error_log;
|
||||
access_log off;
|
||||
error_log off;
|
||||
|
||||
location / {
|
||||
location ~.*\.(3gp|gif|jpg|jpeg|png|ico|wmv|avi|asf|asx|mpg|mpeg|mp4|pls|mp3|mid|wav|swf|flv|html|htm|txt|js|css|exe|zip|tar|rar|gz|tgz|bz2|uha|7z|doc|docx|xls|xlsx|pdf|iso|woff|ttf|svg|eot)\$ {
|
||||
expires 7d;#Comment this out if you are using the apache backend cache-control/expires headers.
|
||||
try_files \$uri \@backend;
|
||||
}
|
||||
|
||||
error_page 405 = \@backend;
|
||||
error_page 500 = \@custom;
|
||||
add_header X-Cache "HIT from Backend";
|
||||
|
||||
proxy_pass http://10.208.99.25:80;
|
||||
include proxy.inc;
|
||||
}
|
||||
|
||||
location \@backend {
|
||||
internal;
|
||||
proxy_pass http://10.208.99.25:80;
|
||||
|
||||
include proxy.inc;
|
||||
}
|
||||
|
||||
location \@custom {
|
||||
internal;
|
||||
proxy_pass http://10.208.99.25:80;
|
||||
include proxy.inc;
|
||||
}
|
||||
|
||||
location ~ .*\.(php|jsp|cgi|pl|py)?\$ {
|
||||
proxy_pass http://10.208.99.25:80;
|
||||
include proxy.inc;
|
||||
}
|
||||
|
||||
location ~ /\.ht {
|
||||
deny all;
|
||||
}
|
||||
|
||||
}
|
||||
@@ -0,0 +1,43 @@
|
||||
server {
|
||||
listen 8197;
|
||||
|
||||
#Logging
|
||||
access_log off;
|
||||
error_log /var/log/nginx/hdwallpapers-error_log;
|
||||
|
||||
server_name hdwallpapers.live www.hdwallpapers.live;
|
||||
|
||||
location / {
|
||||
location ~.*\.(3gp|gif|jpg|jpeg|png|ico|wmv|avi|asf|asx|mpg|mpeg|mp4|pls|mp3|mid|wav|swf|flv|html|htm|txt|js|css|exe|zip|tar|rar|gz|tgz|bz2|uha|7z|doc|docx|xls|xlsx|pdf|iso|woff|ttf|svg|eot)\$ {
|
||||
expires 7d;#Comment this out if you are using the apache backend cache-control/expires headers.
|
||||
try_files \$uri \@backend;
|
||||
}
|
||||
|
||||
error_page 405 = \@backend;
|
||||
error_page 500 = \@custom;
|
||||
add_header X-Cache "HIT from Backend";
|
||||
|
||||
proxy_pass http://10.208.99.26:102;
|
||||
include proxy.inc;
|
||||
}
|
||||
|
||||
location \@backend {
|
||||
internal;
|
||||
proxy_pass http://10.208.99.26:102;
|
||||
|
||||
include proxy.inc;
|
||||
}
|
||||
|
||||
location \@custom {
|
||||
internal;
|
||||
proxy_pass http://10.208.99.26:102;
|
||||
include proxy.inc;
|
||||
}
|
||||
|
||||
location ~ .*\.(php|jsp|cgi|pl|py)?\$ {
|
||||
proxy_pass http://10.208.99.26:102;
|
||||
include proxy.inc;
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
@@ -0,0 +1,19 @@
|
||||
server {
|
||||
|
||||
access_log off;
|
||||
error_log off;
|
||||
|
||||
listen 8197;
|
||||
|
||||
server_name huluwood.com www.huluwood.com;
|
||||
|
||||
if (!-d $request_filename) {
|
||||
rewrite ^/(.*)/$ /$1 permanent;
|
||||
}
|
||||
|
||||
location / {
|
||||
if ($http_host ~* "^(www\.)?huluwood\.com$"){
|
||||
rewrite ^/(.*)$ http://fmoviesfree.com/$1 permanent;
|
||||
}
|
||||
}
|
||||
}
|
||||
46
nginx/conf.d/ganool/nginx/ngx1/nginx/vhosts.d/idup.to.conf
Normal file
46
nginx/conf.d/ganool/nginx/ngx1/nginx/vhosts.d/idup.to.conf
Normal file
@@ -0,0 +1,46 @@
|
||||
server {
|
||||
listen 8197;
|
||||
|
||||
#Logging
|
||||
access_log off;
|
||||
error_log off;
|
||||
|
||||
server_name idup.to www.idup.to;
|
||||
|
||||
location / {
|
||||
location ~.*\.(3gp|gif|jpg|jpeg|png|ico|wmv|avi|asf|asx|mpg|mpeg|mp4|pls|mp3|mid|wav|swf|flv|html|htm|txt|js|css|exe|zip|tar|rar|gz|tgz|bz2|uha|7z|doc|docx|xls|xlsx|pdf|iso|woff|ttf|svg|eot)\$ {
|
||||
expires 7d;#Comment this out if you are using the apache backend cache-control/expires headers.
|
||||
try_files \$uri \@backend;
|
||||
}
|
||||
|
||||
error_page 405 = \@backend;
|
||||
error_page 500 = \@custom;
|
||||
add_header X-Cache "HIT from Backend";
|
||||
|
||||
proxy_pass http://10.208.99.27:80;
|
||||
include proxy.inc;
|
||||
}
|
||||
|
||||
location \@backend {
|
||||
internal;
|
||||
proxy_pass http://10.208.99.27:80;
|
||||
|
||||
include proxy.inc;
|
||||
}
|
||||
|
||||
location \@custom {
|
||||
internal;
|
||||
proxy_pass http://10.208.99.27:80;
|
||||
include proxy.inc;
|
||||
}
|
||||
|
||||
location ~ .*\.(php|jsp|cgi|pl|py)?\$ {
|
||||
proxy_pass http://10.208.99.27:80;
|
||||
include proxy.inc;
|
||||
}
|
||||
|
||||
location ~ /\.ht {
|
||||
deny all;
|
||||
}
|
||||
|
||||
}
|
||||
@@ -0,0 +1,47 @@
|
||||
server {
|
||||
listen 8197;
|
||||
|
||||
#Logging
|
||||
access_log off;
|
||||
error_log off;
|
||||
|
||||
server_name linkgen.st www.linkgen.st;
|
||||
|
||||
location / {
|
||||
location ~.*\.(3gp|gif|jpg|jpeg|png|ico|wmv|avi|asf|asx|mpg|mpeg|mp4|pls|mp3|mid|wav|swf|flv|html|htm|txt|js|css|exe|zip|tar|rar|gz|tgz|bz2|uha|7z|doc|docx|xls|xlsx|pdf|iso|woff|ttf|svg|eot)\$ {
|
||||
expires 7d;#Comment this out if you are using the apache backend cache-control/expires headers.
|
||||
try_files \$uri \@backend;
|
||||
}
|
||||
|
||||
error_page 405 = \@backend;
|
||||
error_page 500 = \@custom;
|
||||
add_header X-Cache "HIT from Backend";
|
||||
|
||||
proxy_pass http://10.208.99.26:100;
|
||||
include proxy.inc;
|
||||
}
|
||||
|
||||
location \@backend {
|
||||
internal;
|
||||
proxy_pass http://10.208.99.26:100;
|
||||
|
||||
include proxy.inc;
|
||||
}
|
||||
|
||||
location \@custom {
|
||||
internal;
|
||||
proxy_pass http://10.208.99.26:100;
|
||||
include proxy.inc;
|
||||
}
|
||||
|
||||
location ~ .*\.(php|jsp|cgi|pl|py)?\$ {
|
||||
proxy_pass http://10.208.99.26:100;
|
||||
include proxy.inc;
|
||||
}
|
||||
|
||||
location ~ /\.ht {
|
||||
deny all;
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
@@ -0,0 +1,15 @@
|
||||
server {
|
||||
|
||||
access_log off;
|
||||
error_log off;
|
||||
|
||||
listen 8197;
|
||||
|
||||
server_name linkgen.to www.linkgen.to;
|
||||
|
||||
location / {
|
||||
if ($http_host ~* "^(www\.)?linkgen\.to$") {
|
||||
rewrite ^/(.*)$ https://linkgen.st/$1 permanent;
|
||||
}
|
||||
}
|
||||
}
|
||||
14
nginx/conf.d/ganool/nginx/ngx1/nginx/vhosts.d/localhost.conf
Normal file
14
nginx/conf.d/ganool/nginx/ngx1/nginx/vhosts.d/localhost.conf
Normal file
@@ -0,0 +1,14 @@
|
||||
server {
|
||||
listen 8197;
|
||||
|
||||
location /nginx_status {
|
||||
stub_status on;
|
||||
access_log off;
|
||||
allow 127.0.0.1;
|
||||
allow 54.234.180.180;
|
||||
allow 54.187.214.27;
|
||||
deny all;
|
||||
}
|
||||
|
||||
server_name 127.0.0.1;
|
||||
}
|
||||
@@ -0,0 +1,14 @@
|
||||
server {
|
||||
access_log off;
|
||||
error_log off;
|
||||
|
||||
listen 8197;
|
||||
|
||||
server_name mylinkgen.com www.mylinkgen.com;
|
||||
|
||||
location / {
|
||||
if ($http_host ~* "^(www\.)?mylinkgen\.com$"){
|
||||
rewrite ^(.*)$ https://linkgen.st redirect;
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,19 @@
|
||||
server {
|
||||
|
||||
access_log off;
|
||||
error_log off;
|
||||
|
||||
listen 8197;
|
||||
|
||||
server_name mylinkgen.ws www.mylinkgen.ws;
|
||||
|
||||
if (!-d $request_filename) {
|
||||
rewrite ^/(.*)/$ /$1 permanent;
|
||||
}
|
||||
|
||||
location / {
|
||||
if ($http_host ~* "^(www\.)?mylinkgen\.ws$"){
|
||||
rewrite ^(.*)$ https://linkgen.st/$1 redirect;
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,46 @@
|
||||
server {
|
||||
listen 8197;
|
||||
|
||||
#Logging
|
||||
access_log off;
|
||||
error_log off;
|
||||
|
||||
server_name myna.rocks www.myna.rocks;
|
||||
|
||||
location / {
|
||||
location ~.*\.(3gp|gif|jpg|jpeg|png|ico|wmv|avi|asf|asx|mpg|mpeg|mp4|pls|mp3|mid|wav|swf|flv|html|htm|txt|js|css|exe|zip|tar|rar|gz|tgz|bz2|uha|7z|doc|docx|xls|xlsx|pdf|iso|woff|ttf|svg|eot)\$ {
|
||||
expires 7d;#Comment this out if you are using the apache backend cache-control/expires headers.
|
||||
try_files \$uri \@backend;
|
||||
}
|
||||
|
||||
error_page 405 = \@backend;
|
||||
error_page 500 = \@custom;
|
||||
add_header X-Cache "HIT from Backend";
|
||||
|
||||
proxy_pass http://10.208.99.26:88;
|
||||
include proxy.inc;
|
||||
}
|
||||
|
||||
location \@backend {
|
||||
internal;
|
||||
proxy_pass http://10.208.99.26:88;
|
||||
|
||||
include proxy.inc;
|
||||
}
|
||||
|
||||
location \@custom {
|
||||
internal;
|
||||
proxy_pass http://10.208.99.26:88;
|
||||
include proxy.inc;
|
||||
}
|
||||
|
||||
location ~ .*\.(php|jsp|cgi|pl|py)?\$ {
|
||||
proxy_pass http://10.208.99.26:88;
|
||||
include proxy.inc;
|
||||
}
|
||||
|
||||
location ~ /\.ht {
|
||||
deny all;
|
||||
}
|
||||
|
||||
}
|
||||
@@ -0,0 +1,46 @@
|
||||
server {
|
||||
listen 8197;
|
||||
server_name new.ganool.st;
|
||||
|
||||
#access_log /var/log/nginx/goon-access_log;
|
||||
#error_log /var/log/nginx/goon-error_log;
|
||||
access_log off;
|
||||
error_log off;
|
||||
|
||||
location / {
|
||||
location ~.*\.(3gp|gif|jpg|jpeg|png|ico|wmv|avi|asf|asx|mpg|mpeg|mp4|pls|mp3|mid|wav|swf|flv|html|htm|txt|js|css|exe|zip|tar|rar|gz|tgz|bz2|uha|7z|doc|docx|xls|xlsx|pdf|iso|woff|ttf|svg|eot)\$ {
|
||||
expires 7d;#Comment this out if you are using the apache backend cache-control/expires headers.
|
||||
try_files \$uri \@backend;
|
||||
}
|
||||
|
||||
error_page 405 = \@backend;
|
||||
error_page 500 = \@custom;
|
||||
add_header X-Cache "HIT from Backend";
|
||||
|
||||
proxy_pass http://10.208.99.25:80;
|
||||
include proxy.inc;
|
||||
}
|
||||
|
||||
location \@backend {
|
||||
internal;
|
||||
proxy_pass http://10.208.99.25:80;
|
||||
|
||||
include proxy.inc;
|
||||
}
|
||||
|
||||
location \@custom {
|
||||
internal;
|
||||
proxy_pass http://10.208.99.25:80;
|
||||
include proxy.inc;
|
||||
}
|
||||
|
||||
location ~ .*\.(php|jsp|cgi|pl|py)?\$ {
|
||||
proxy_pass http://10.208.99.25:80;
|
||||
include proxy.inc;
|
||||
}
|
||||
|
||||
location ~ /\.ht {
|
||||
deny all;
|
||||
}
|
||||
|
||||
}
|
||||
@@ -0,0 +1,47 @@
|
||||
server {
|
||||
listen 8197;
|
||||
|
||||
#Logging
|
||||
access_log off;
|
||||
error_log off;
|
||||
|
||||
server_name onlinehdmoviez.com www.onlinehdmoviez.com;
|
||||
|
||||
location / {
|
||||
location ~.*\.(3gp|gif|jpg|jpeg|png|ico|wmv|avi|asf|asx|mpg|mpeg|mp4|pls|mp3|mid|wav|swf|flv|html|htm|txt|js|css|exe|zip|tar|rar|gz|tgz|bz2|uha|7z|doc|docx|xls|xlsx|pdf|iso|woff|ttf|svg|eot)\$ {
|
||||
expires 7d;#Comment this out if you are using the apache backend cache-control/expires headers.
|
||||
try_files \$uri \@backend;
|
||||
}
|
||||
|
||||
error_page 405 = \@backend;
|
||||
error_page 500 = \@custom;
|
||||
add_header X-Cache "HIT from Backend";
|
||||
|
||||
proxy_pass http://10.208.99.25:80;
|
||||
include proxy.inc;
|
||||
}
|
||||
|
||||
location \@backend {
|
||||
internal;
|
||||
proxy_pass http://10.208.99.25:80;
|
||||
|
||||
include proxy.inc;
|
||||
}
|
||||
|
||||
location \@custom {
|
||||
internal;
|
||||
proxy_pass http://10.208.99.25:80;
|
||||
include proxy.inc;
|
||||
}
|
||||
|
||||
location ~ .*\.(php|jsp|cgi|pl|py)?\$ {
|
||||
proxy_pass http://10.208.99.25:80;
|
||||
include proxy.inc;
|
||||
}
|
||||
|
||||
location ~ /\.ht {
|
||||
deny all;
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
@@ -0,0 +1,42 @@
|
||||
server {
|
||||
listen 8197;
|
||||
|
||||
#Logging
|
||||
access_log off;
|
||||
error_log off;
|
||||
|
||||
server_name phpadmin.goon.to www.phpadmin.goon.to;
|
||||
|
||||
location / {
|
||||
location ~.*\.(3gp|gif|jpg|jpeg|png|ico|wmv|avi|asf|asx|mpg|mpeg|mp4|pls|mp3|mid|wav|swf|flv|html|htm|txt|js|css|exe|zip|tar|rar|gz|tgz|bz2|uha|7z|doc|docx|xls|xlsx|pdf|iso|woff|ttf|svg|eot)\$ {
|
||||
expires 7d;#Comment this out if you are using the apache backend cache-control/expires headers.
|
||||
try_files \$uri \@backend;
|
||||
}
|
||||
|
||||
error_page 405 = \@backend;
|
||||
error_page 500 = \@custom;
|
||||
add_header X-Cache "HIT from Backend";
|
||||
|
||||
proxy_pass http://10.208.99.25:100;
|
||||
include proxy.inc;
|
||||
}
|
||||
|
||||
location \@backend {
|
||||
internal;
|
||||
proxy_pass http://10.208.99.25:100;
|
||||
|
||||
include proxy.inc;
|
||||
}
|
||||
|
||||
location \@custom {
|
||||
internal;
|
||||
proxy_pass http://10.208.99.25:100;
|
||||
include proxy.inc;
|
||||
}
|
||||
|
||||
location ~ .*\.(php|jsp|cgi|pl|py)?\$ {
|
||||
proxy_pass http://10.208.99.25:100;
|
||||
include proxy.inc;
|
||||
}
|
||||
|
||||
}
|
||||
@@ -0,0 +1,46 @@
|
||||
server {
|
||||
|
||||
listen 8197;
|
||||
|
||||
access_log off;
|
||||
error_log /var/log/nginx/rockfile-error_log;
|
||||
|
||||
server_name rockfile.to www.rockfile.to;
|
||||
|
||||
location / {
|
||||
location ~.*\.(3gp|gif|jpg|jpeg|png|ico|wmv|avi|asf|asx|mpg|mpeg|mp4|pls|mp3|mid|wav|swf|flv|html|htm|txt|js|css|exe|zip|tar|rar|gz|tgz|bz2|uha|7z|doc|docx|xls|xlsx|pdf|iso|woff|ttf|svg|eot)\$ {
|
||||
expires 7d;#Comment this out if you are using the apache backend cache-control/expires headers.
|
||||
try_files \$uri \@backend;
|
||||
}
|
||||
|
||||
error_page 405 = \@backend;
|
||||
error_page 500 = \@custom;
|
||||
add_header X-Cache "HIT from Backend";
|
||||
|
||||
proxy_pass http://10.208.99.26:101;
|
||||
include proxy.inc;
|
||||
}
|
||||
|
||||
location \@backend {
|
||||
internal;
|
||||
proxy_pass http://10.208.99.26:101;
|
||||
|
||||
include proxy.inc;
|
||||
}
|
||||
|
||||
location \@custom {
|
||||
internal;
|
||||
proxy_pass http://10.208.99.26:101;
|
||||
include proxy.inc;
|
||||
}
|
||||
|
||||
location ~ .*\.(php|jsp|cgi|pl|py)?\$ {
|
||||
proxy_pass http://10.208.99.26:101;
|
||||
include proxy.inc;
|
||||
}
|
||||
|
||||
location ~ /\.ht {
|
||||
deny all;
|
||||
}
|
||||
|
||||
}
|
||||
@@ -0,0 +1,45 @@
|
||||
server {
|
||||
listen 8197;
|
||||
server_name short.cokeandpopcorn.click;
|
||||
|
||||
access_log off;
|
||||
error_log off;
|
||||
|
||||
location / {
|
||||
location ~.*\.(3gp|gif|jpg|jpeg|png|ico|wmv|avi|asf|asx|mpg|mpeg|mp4|pls|mp3|mid|wav|swf|flv|html|htm|txt|js|css|exe|zip|tar|rar|gz|tgz|bz2|uha|7z|doc|docx|xls|xlsx|pdf|iso|woff|ttf|svg|eot)\$ {
|
||||
expires 7d;#Comment this out if you are using the apache backend cache-control/expires headers.
|
||||
try_files \$uri \@backend;
|
||||
}
|
||||
|
||||
error_page 405 = \@backend;
|
||||
error_page 500 = \@custom;
|
||||
add_header X-Cache "HIT from Backend";
|
||||
|
||||
proxy_pass http://10.208.99.26:200;
|
||||
include proxy.inc;
|
||||
}
|
||||
|
||||
location \@backend {
|
||||
internal;
|
||||
proxy_pass http://10.208.99.26:200;
|
||||
|
||||
include proxy.inc;
|
||||
}
|
||||
|
||||
location \@custom {
|
||||
internal;
|
||||
proxy_pass http://10.208.99.26:200;
|
||||
include proxy.inc;
|
||||
}
|
||||
|
||||
location ~ .*\.(php|jsp|cgi|pl|py)?\$ {
|
||||
proxy_pass http://10.208.99.26:200;
|
||||
include proxy.inc;
|
||||
}
|
||||
|
||||
location ~ /\.ht {
|
||||
deny all;
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
@@ -0,0 +1,44 @@
|
||||
server {
|
||||
listen 8197;
|
||||
server_name shrink.ltd;
|
||||
|
||||
access_log off;
|
||||
error_log off;
|
||||
|
||||
location / {
|
||||
location ~.*\.(3gp|gif|jpg|jpeg|png|ico|wmv|avi|asf|asx|mpg|mpeg|mp4|pls|mp3|mid|wav|swf|flv|html|htm|txt|js|css|exe|zip|tar|rar|gz|tgz|bz2|uha|7z|doc|docx|xls|xlsx|pdf|iso|woff|ttf|svg|eot)\$ {
|
||||
expires 7d;#Comment this out if you are using the apache backend cache-control/expires headers.
|
||||
try_files \$uri \@backend;
|
||||
}
|
||||
|
||||
error_page 405 = \@backend;
|
||||
error_page 500 = \@custom;
|
||||
add_header X-Cache "HIT from Backend";
|
||||
|
||||
proxy_pass http://10.208.99.26:201;
|
||||
include proxy.inc;
|
||||
}
|
||||
|
||||
location \@backend {
|
||||
internal;
|
||||
proxy_pass http://10.208.99.26:201;
|
||||
|
||||
include proxy.inc;
|
||||
}
|
||||
|
||||
location \@custom {
|
||||
internal;
|
||||
proxy_pass http://10.208.99.26:201;
|
||||
include proxy.inc;
|
||||
}
|
||||
|
||||
location ~ .*\.(php|jsp|cgi|pl|py)?\$ {
|
||||
proxy_pass http://10.208.99.26:201;
|
||||
include proxy.inc;
|
||||
}
|
||||
|
||||
location ~ /\.ht {
|
||||
deny all;
|
||||
}
|
||||
|
||||
}
|
||||
@@ -0,0 +1,19 @@
|
||||
server {
|
||||
|
||||
access_log off;
|
||||
error_log off;
|
||||
|
||||
listen 8197;
|
||||
|
||||
server_name vudumov.com www.vudumov.com;
|
||||
|
||||
if (!-d $request_filename) {
|
||||
rewrite ^/(.*)/$ /$1 permanent;
|
||||
}
|
||||
|
||||
location / {
|
||||
if ($http_host ~* "^(www\.)?vudumov\.com$"){
|
||||
rewrite ^/(.*)$ http://fmoviesfree.com/$1 permanent;
|
||||
}
|
||||
}
|
||||
}
|
||||
126
nginx/conf.d/ganool/nginx/ngx1/nginx/win-utf
Normal file
126
nginx/conf.d/ganool/nginx/ngx1/nginx/win-utf
Normal file
@@ -0,0 +1,126 @@
|
||||
|
||||
# This map is not a full windows-1251 <> utf8 map: it does not
|
||||
# contain Serbian and Macedonian letters. If you need a full map,
|
||||
# use contrib/unicode2nginx/win-utf map instead.
|
||||
|
||||
charset_map windows-1251 utf-8 {
|
||||
|
||||
82 E2809A ; # single low-9 quotation mark
|
||||
|
||||
84 E2809E ; # double low-9 quotation mark
|
||||
85 E280A6 ; # ellipsis
|
||||
86 E280A0 ; # dagger
|
||||
87 E280A1 ; # double dagger
|
||||
88 E282AC ; # euro
|
||||
89 E280B0 ; # per mille
|
||||
|
||||
91 E28098 ; # left single quotation mark
|
||||
92 E28099 ; # right single quotation mark
|
||||
93 E2809C ; # left double quotation mark
|
||||
94 E2809D ; # right double quotation mark
|
||||
95 E280A2 ; # bullet
|
||||
96 E28093 ; # en dash
|
||||
97 E28094 ; # em dash
|
||||
|
||||
99 E284A2 ; # trade mark sign
|
||||
|
||||
A0 C2A0 ; #
|
||||
A1 D18E ; # capital Byelorussian short U
|
||||
A2 D19E ; # small Byelorussian short u
|
||||
|
||||
A4 C2A4 ; # currency sign
|
||||
A5 D290 ; # capital Ukrainian soft G
|
||||
A6 C2A6 ; # borken bar
|
||||
A7 C2A7 ; # section sign
|
||||
A8 D081 ; # capital YO
|
||||
A9 C2A9 ; # (C)
|
||||
AA D084 ; # capital Ukrainian YE
|
||||
AB C2AB ; # left-pointing double angle quotation mark
|
||||
AC C2AC ; # not sign
|
||||
AD C2AD ; # soft hypen
|
||||
AE C2AE ; # (R)
|
||||
AF D087 ; # capital Ukrainian YI
|
||||
|
||||
B0 C2B0 ; # °
|
||||
B1 C2B1 ; # plus-minus sign
|
||||
B2 D086 ; # capital Ukrainian I
|
||||
B3 D196 ; # small Ukrainian i
|
||||
B4 D291 ; # small Ukrainian soft g
|
||||
B5 C2B5 ; # micro sign
|
||||
B6 C2B6 ; # pilcrow sign
|
||||
B7 C2B7 ; # ·
|
||||
B8 D191 ; # small yo
|
||||
B9 E28496 ; # numero sign
|
||||
BA D194 ; # small Ukrainian ye
|
||||
BB C2BB ; # right-pointing double angle quotation mark
|
||||
|
||||
BF D197 ; # small Ukrainian yi
|
||||
|
||||
C0 D090 ; # capital A
|
||||
C1 D091 ; # capital B
|
||||
C2 D092 ; # capital V
|
||||
C3 D093 ; # capital G
|
||||
C4 D094 ; # capital D
|
||||
C5 D095 ; # capital YE
|
||||
C6 D096 ; # capital ZH
|
||||
C7 D097 ; # capital Z
|
||||
C8 D098 ; # capital I
|
||||
C9 D099 ; # capital J
|
||||
CA D09A ; # capital K
|
||||
CB D09B ; # capital L
|
||||
CC D09C ; # capital M
|
||||
CD D09D ; # capital N
|
||||
CE D09E ; # capital O
|
||||
CF D09F ; # capital P
|
||||
|
||||
D0 D0A0 ; # capital R
|
||||
D1 D0A1 ; # capital S
|
||||
D2 D0A2 ; # capital T
|
||||
D3 D0A3 ; # capital U
|
||||
D4 D0A4 ; # capital F
|
||||
D5 D0A5 ; # capital KH
|
||||
D6 D0A6 ; # capital TS
|
||||
D7 D0A7 ; # capital CH
|
||||
D8 D0A8 ; # capital SH
|
||||
D9 D0A9 ; # capital SHCH
|
||||
DA D0AA ; # capital hard sign
|
||||
DB D0AB ; # capital Y
|
||||
DC D0AC ; # capital soft sign
|
||||
DD D0AD ; # capital E
|
||||
DE D0AE ; # capital YU
|
||||
DF D0AF ; # capital YA
|
||||
|
||||
E0 D0B0 ; # small a
|
||||
E1 D0B1 ; # small b
|
||||
E2 D0B2 ; # small v
|
||||
E3 D0B3 ; # small g
|
||||
E4 D0B4 ; # small d
|
||||
E5 D0B5 ; # small ye
|
||||
E6 D0B6 ; # small zh
|
||||
E7 D0B7 ; # small z
|
||||
E8 D0B8 ; # small i
|
||||
E9 D0B9 ; # small j
|
||||
EA D0BA ; # small k
|
||||
EB D0BB ; # small l
|
||||
EC D0BC ; # small m
|
||||
ED D0BD ; # small n
|
||||
EE D0BE ; # small o
|
||||
EF D0BF ; # small p
|
||||
|
||||
F0 D180 ; # small r
|
||||
F1 D181 ; # small s
|
||||
F2 D182 ; # small t
|
||||
F3 D183 ; # small u
|
||||
F4 D184 ; # small f
|
||||
F5 D185 ; # small kh
|
||||
F6 D186 ; # small ts
|
||||
F7 D187 ; # small ch
|
||||
F8 D188 ; # small sh
|
||||
F9 D189 ; # small shch
|
||||
FA D18A ; # small hard sign
|
||||
FB D18B ; # small y
|
||||
FC D18C ; # small soft sign
|
||||
FD D18D ; # small e
|
||||
FE D18E ; # small yu
|
||||
FF D18F ; # small ya
|
||||
}
|
||||
73
nginx/conf.d/ganool/nginx/ngx1/sysctl.conf
Normal file
73
nginx/conf.d/ganool/nginx/ngx1/sysctl.conf
Normal file
@@ -0,0 +1,73 @@
|
||||
# kernel tunning
|
||||
kernel.printk = 4 4 1 7
|
||||
kernel.panic = 10
|
||||
kernel.sysrq = 0
|
||||
kernel.shmmax = 4294967296
|
||||
kernel.shmall = 4194304
|
||||
kernel.core_uses_pid = 1
|
||||
kernel.msgmnb = 65536
|
||||
kernel.msgmax = 65536
|
||||
vm.swappiness = 20
|
||||
vm.dirty_ratio = 80
|
||||
vm.dirty_background_ratio = 5
|
||||
fs.file-max = 2097152
|
||||
net.core.netdev_max_backlog = 262144
|
||||
net.core.rmem_default = 31457280
|
||||
net.core.rmem_max = 67108864
|
||||
net.core.wmem_default = 31457280
|
||||
net.core.wmem_max = 67108864
|
||||
net.core.somaxconn = 65535
|
||||
net.core.optmem_max = 25165824
|
||||
net.ipv4.neigh.default.gc_thresh1 = 4096
|
||||
net.ipv4.neigh.default.gc_thresh2 = 8192
|
||||
net.ipv4.neigh.default.gc_thresh3 = 16384
|
||||
net.ipv4.neigh.default.gc_interval = 5
|
||||
net.ipv4.neigh.default.gc_stale_time = 120
|
||||
net.netfilter.nf_conntrack_max = 10000000
|
||||
net.netfilter.nf_conntrack_tcp_loose = 0
|
||||
net.netfilter.nf_conntrack_tcp_timeout_established = 1800
|
||||
net.netfilter.nf_conntrack_tcp_timeout_close = 10
|
||||
net.netfilter.nf_conntrack_tcp_timeout_close_wait = 10
|
||||
net.netfilter.nf_conntrack_tcp_timeout_fin_wait = 20
|
||||
net.netfilter.nf_conntrack_tcp_timeout_last_ack = 20
|
||||
net.netfilter.nf_conntrack_tcp_timeout_syn_recv = 20
|
||||
net.netfilter.nf_conntrack_tcp_timeout_syn_sent = 20
|
||||
net.netfilter.nf_conntrack_tcp_timeout_time_wait = 10
|
||||
net.ipv4.tcp_slow_start_after_idle = 0
|
||||
net.ipv4.ip_local_port_range = 1024 65000
|
||||
net.ipv4.ip_no_pmtu_disc = 1
|
||||
net.ipv4.route.flush = 1
|
||||
net.ipv4.route.max_size = 8048576
|
||||
net.ipv4.icmp_echo_ignore_broadcasts = 1
|
||||
net.ipv4.icmp_ignore_bogus_error_responses = 1
|
||||
net.ipv4.tcp_congestion_control = htcp
|
||||
net.ipv4.tcp_mem = 65536 131072 262144
|
||||
net.ipv4.udp_mem = 65536 131072 262144
|
||||
net.ipv4.tcp_rmem = 4096 87380 33554432
|
||||
net.ipv4.udp_rmem_min = 16384
|
||||
net.ipv4.tcp_wmem = 4096 87380 33554432
|
||||
net.ipv4.udp_wmem_min = 16384
|
||||
net.ipv4.tcp_max_tw_buckets = 1440000
|
||||
net.ipv4.tcp_tw_recycle = 0
|
||||
net.ipv4.tcp_tw_reuse = 1
|
||||
net.ipv4.tcp_max_orphans = 400000
|
||||
net.ipv4.tcp_window_scaling = 1
|
||||
net.ipv4.tcp_rfc1337 = 1
|
||||
net.ipv4.tcp_syncookies = 1
|
||||
net.ipv4.tcp_synack_retries = 1
|
||||
net.ipv4.tcp_syn_retries = 2
|
||||
net.ipv4.tcp_max_syn_backlog = 16384
|
||||
net.ipv4.tcp_timestamps = 1
|
||||
net.ipv4.tcp_sack = 1
|
||||
net.ipv4.tcp_fack = 1
|
||||
net.ipv4.tcp_ecn = 2
|
||||
net.ipv4.tcp_fin_timeout = 10
|
||||
net.ipv4.tcp_keepalive_time = 600
|
||||
net.ipv4.tcp_keepalive_intvl = 60
|
||||
net.ipv4.tcp_keepalive_probes = 10
|
||||
net.ipv4.tcp_no_metrics_save = 1
|
||||
net.ipv4.ip_forward = 0
|
||||
net.ipv4.conf.all.accept_redirects = 0
|
||||
net.ipv4.conf.all.send_redirects = 0
|
||||
net.ipv4.conf.all.accept_source_route = 0
|
||||
net.ipv4.conf.all.rp_filter = 1
|
||||
4
nginx/conf.d/ganool/nginx/proxy.conf
Normal file
4
nginx/conf.d/ganool/nginx/proxy.conf
Normal file
@@ -0,0 +1,4 @@
|
||||
proxy_redirect off;
|
||||
proxy_set_header Host $host:$server_port;
|
||||
proxy_set_header X-Real-IP $remote_addr;
|
||||
proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
|
||||
29
nginx/conf.d/ganool/nginx/proxy.inc
Normal file
29
nginx/conf.d/ganool/nginx/proxy.inc
Normal file
@@ -0,0 +1,29 @@
|
||||
### proxy file starts here ###
|
||||
# More info here: http://wiki.nginx.org/HttpProxyModule
|
||||
|
||||
proxy_buffering off;
|
||||
proxy_connect_timeout 90s;
|
||||
proxy_send_timeout 900;
|
||||
proxy_read_timeout 900;
|
||||
proxy_buffer_size 64k;
|
||||
proxy_buffers 16 32k;
|
||||
proxy_busy_buffers_size 64k;
|
||||
proxy_temp_file_write_size 64k;
|
||||
proxy_pass_header Set-Cookie;
|
||||
proxy_redirect off;
|
||||
proxy_hide_header Vary;
|
||||
proxy_hide_header X-Powered-By;
|
||||
proxy_set_header Accept-Encoding '';
|
||||
#If you want to get the cache-control and expire headers from apache, comment out 'proxy_ignore_headers' and uncomment 'proxy_pass_header Expires;' and 'proxy_pass_header Cache-Control
|
||||
proxy_pass_header Expires;
|
||||
proxy_pass_header Cache-Control;
|
||||
proxy_ignore_headers Cache-Control Expires;
|
||||
proxy_set_header Referer $http_referer;
|
||||
proxy_set_header Host $host;
|
||||
proxy_set_header Cookie $http_cookie;
|
||||
#proxy_set_header X-Real-IP $remote_addr;
|
||||
#proxy_set_header X-Forwarded-Host $host;
|
||||
#proxy_set_header X-Forwarded-Server $host;
|
||||
#proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
|
||||
|
||||
### proxy file ends here ###
|
||||
17
nginx/conf.d/ganool/nginx/scgi_params
Normal file
17
nginx/conf.d/ganool/nginx/scgi_params
Normal file
@@ -0,0 +1,17 @@
|
||||
|
||||
scgi_param REQUEST_METHOD $request_method;
|
||||
scgi_param REQUEST_URI $request_uri;
|
||||
scgi_param QUERY_STRING $query_string;
|
||||
scgi_param CONTENT_TYPE $content_type;
|
||||
|
||||
scgi_param DOCUMENT_URI $document_uri;
|
||||
scgi_param DOCUMENT_ROOT $document_root;
|
||||
scgi_param SCGI 1;
|
||||
scgi_param SERVER_PROTOCOL $server_protocol;
|
||||
scgi_param REQUEST_SCHEME $scheme;
|
||||
scgi_param HTTPS $https if_not_empty;
|
||||
|
||||
scgi_param REMOTE_ADDR $remote_addr;
|
||||
scgi_param REMOTE_PORT $remote_port;
|
||||
scgi_param SERVER_PORT $server_port;
|
||||
scgi_param SERVER_NAME $server_name;
|
||||
17
nginx/conf.d/ganool/nginx/uwsgi_params
Normal file
17
nginx/conf.d/ganool/nginx/uwsgi_params
Normal file
@@ -0,0 +1,17 @@
|
||||
|
||||
uwsgi_param QUERY_STRING $query_string;
|
||||
uwsgi_param REQUEST_METHOD $request_method;
|
||||
uwsgi_param CONTENT_TYPE $content_type;
|
||||
uwsgi_param CONTENT_LENGTH $content_length;
|
||||
|
||||
uwsgi_param REQUEST_URI $request_uri;
|
||||
uwsgi_param PATH_INFO $document_uri;
|
||||
uwsgi_param DOCUMENT_ROOT $document_root;
|
||||
uwsgi_param SERVER_PROTOCOL $server_protocol;
|
||||
uwsgi_param REQUEST_SCHEME $scheme;
|
||||
uwsgi_param HTTPS $https if_not_empty;
|
||||
|
||||
uwsgi_param REMOTE_ADDR $remote_addr;
|
||||
uwsgi_param REMOTE_PORT $remote_port;
|
||||
uwsgi_param SERVER_PORT $server_port;
|
||||
uwsgi_param SERVER_NAME $server_name;
|
||||
48
nginx/conf.d/ganool/nginx/vhosts.d/blazefile.co.conf
Normal file
48
nginx/conf.d/ganool/nginx/vhosts.d/blazefile.co.conf
Normal file
@@ -0,0 +1,48 @@
|
||||
server {
|
||||
listen 8197;
|
||||
listen 80;
|
||||
|
||||
#Logging
|
||||
access_log off;
|
||||
error_log /var/log/nginx/blazefile.error.log;
|
||||
|
||||
server_name blazefile.co www.blazefile.co;
|
||||
|
||||
location / {
|
||||
location ~.*\.(3gp|gif|jpg|jpeg|png|ico|wmv|avi|asf|asx|mpg|mpeg|mp4|pls|mp3|mid|wav|swf|flv|html|htm|txt|js|css|exe|zip|tar|rar|gz|tgz|bz2|uha|7z|doc|docx|xls|xlsx|pdf|iso|woff|ttf|svg|eot)\$ {
|
||||
expires 7d;#Comment this out if you are using the apache backend cache-control/expires headers.
|
||||
try_files \$uri \@backend;
|
||||
}
|
||||
|
||||
error_page 405 = \@backend;
|
||||
error_page 500 = \@custom;
|
||||
add_header X-Cache "HIT from Backend";
|
||||
|
||||
proxy_pass http://10.208.99.27:80;
|
||||
include proxy.inc;
|
||||
}
|
||||
|
||||
location \@backend {
|
||||
internal;
|
||||
proxy_pass http://10.208.99.27:80;
|
||||
|
||||
include proxy.inc;
|
||||
}
|
||||
|
||||
location \@custom {
|
||||
internal;
|
||||
proxy_pass http://10.208.99.27:80;
|
||||
include proxy.inc;
|
||||
}
|
||||
|
||||
location ~ .*\.(php|jsp|cgi|pl|py)?\$ {
|
||||
proxy_pass http://10.208.99.27:80;
|
||||
include proxy.inc;
|
||||
}
|
||||
|
||||
location ~ /\.ht {
|
||||
deny all;
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
47
nginx/conf.d/ganool/nginx/vhosts.d/cmovieshd.ru.conf
Normal file
47
nginx/conf.d/ganool/nginx/vhosts.d/cmovieshd.ru.conf
Normal file
@@ -0,0 +1,47 @@
|
||||
server {
|
||||
listen 8197;
|
||||
listen 80;
|
||||
server_name cmovieshd.ru www.cmovieshd.ru;
|
||||
|
||||
#access_log /var/log/nginx/goon-access_log;
|
||||
#error_log /var/log/nginx/goon-error_log;
|
||||
access_log off;
|
||||
error_log off;
|
||||
|
||||
location / {
|
||||
location ~.*\.(3gp|gif|jpg|jpeg|png|ico|wmv|avi|asf|asx|mpg|mpeg|mp4|pls|mp3|mid|wav|swf|flv|html|htm|txt|js|css|exe|zip|tar|rar|gz|tgz|bz2|uha|7z|doc|docx|xls|xlsx|pdf|iso|woff|ttf|svg|eot)\$ {
|
||||
expires 7d;#Comment this out if you are using the apache backend cache-control/expires headers.
|
||||
try_files \$uri \@backend;
|
||||
}
|
||||
|
||||
error_page 405 = \@backend;
|
||||
error_page 500 = \@custom;
|
||||
add_header X-Cache "HIT from Backend";
|
||||
|
||||
proxy_pass http://10.208.99.25:80;
|
||||
include proxy.inc;
|
||||
}
|
||||
|
||||
location \@backend {
|
||||
internal;
|
||||
proxy_pass http://10.208.99.25:80;
|
||||
|
||||
include proxy.inc;
|
||||
}
|
||||
|
||||
location \@custom {
|
||||
internal;
|
||||
proxy_pass http://10.208.99.25:80;
|
||||
include proxy.inc;
|
||||
}
|
||||
|
||||
location ~ .*\.(php|jsp|cgi|pl|py)?\$ {
|
||||
proxy_pass http://10.208.99.25:80;
|
||||
include proxy.inc;
|
||||
}
|
||||
|
||||
location ~ /\.ht {
|
||||
deny all;
|
||||
}
|
||||
|
||||
}
|
||||
45
nginx/conf.d/ganool/nginx/vhosts.d/cmovieshd.se.conf
Normal file
45
nginx/conf.d/ganool/nginx/vhosts.d/cmovieshd.se.conf
Normal file
@@ -0,0 +1,45 @@
|
||||
server {
|
||||
listen 8197;
|
||||
listen 80;
|
||||
server_name cmovieshd.se www.cmovieshd.se;
|
||||
|
||||
access_log off;
|
||||
error_log off;
|
||||
|
||||
location / {
|
||||
location ~.*\.(3gp|gif|jpg|jpeg|png|ico|wmv|avi|asf|asx|mpg|mpeg|mp4|pls|mp3|mid|wav|swf|flv|html|htm|txt|js|css|exe|zip|tar|rar|gz|tgz|bz2|uha|7z|doc|docx|xls|xlsx|pdf|iso|woff|ttf|svg|eot)\$ {
|
||||
expires 7d;#Comment this out if you are using the apache backend cache-control/expires headers.
|
||||
try_files \$uri \@backend;
|
||||
}
|
||||
|
||||
error_page 405 = \@backend;
|
||||
error_page 500 = \@custom;
|
||||
add_header X-Cache "HIT from Backend";
|
||||
|
||||
proxy_pass http://10.208.99.25:80;
|
||||
include proxy.inc;
|
||||
}
|
||||
|
||||
location \@backend {
|
||||
internal;
|
||||
proxy_pass http://10.208.99.25:80;
|
||||
|
||||
include proxy.inc;
|
||||
}
|
||||
|
||||
location \@custom {
|
||||
internal;
|
||||
proxy_pass http://10.208.99.25:80;
|
||||
include proxy.inc;
|
||||
}
|
||||
|
||||
location ~ .*\.(php|jsp|cgi|pl|py)?\$ {
|
||||
proxy_pass http://10.208.99.25:80;
|
||||
include proxy.inc;
|
||||
}
|
||||
|
||||
location ~ /\.ht {
|
||||
deny all;
|
||||
}
|
||||
|
||||
}
|
||||
45
nginx/conf.d/ganool/nginx/vhosts.d/cokeandpopcorn.click.conf
Normal file
45
nginx/conf.d/ganool/nginx/vhosts.d/cokeandpopcorn.click.conf
Normal file
@@ -0,0 +1,45 @@
|
||||
server {
|
||||
listen 8197;
|
||||
listen 80;
|
||||
server_name cokeandpopcorn.click www.cokeandpopcorn.click;
|
||||
|
||||
access_log /var/log/nginx/access_log;
|
||||
error_log /var/log/nginx/error_log;
|
||||
|
||||
location / {
|
||||
location ~.*\.(3gp|gif|jpg|jpeg|png|ico|wmv|avi|asf|asx|mpg|mpeg|mp4|pls|mp3|mid|wav|swf|flv|html|htm|txt|js|css|exe|zip|tar|rar|gz|tgz|bz2|uha|7z|doc|docx|xls|xlsx|pdf|iso|woff|ttf|svg|eot)\$ {
|
||||
expires 7d;#Comment this out if you are using the apache backend cache-control/expires headers.
|
||||
try_files \$uri \@backend;
|
||||
}
|
||||
|
||||
error_page 405 = \@backend;
|
||||
error_page 500 = \@custom;
|
||||
add_header X-Cache "HIT from Backend";
|
||||
|
||||
proxy_pass http://10.208.99.25:80;
|
||||
include proxy.inc;
|
||||
}
|
||||
|
||||
location \@backend {
|
||||
internal;
|
||||
proxy_pass http://10.208.99.25:80;
|
||||
|
||||
include proxy.inc;
|
||||
}
|
||||
|
||||
location \@custom {
|
||||
internal;
|
||||
proxy_pass http://10.208.99.25:80;
|
||||
include proxy.inc;
|
||||
}
|
||||
|
||||
location ~ .*\.(php|jsp|cgi|pl|py)?\$ {
|
||||
proxy_pass http://10.208.99.25:80;
|
||||
include proxy.inc;
|
||||
}
|
||||
|
||||
location ~ /\.ht {
|
||||
deny all;
|
||||
}
|
||||
|
||||
}
|
||||
9
nginx/conf.d/ganool/nginx/vhosts.d/default.conf
Normal file
9
nginx/conf.d/ganool/nginx/vhosts.d/default.conf
Normal file
@@ -0,0 +1,9 @@
|
||||
server {
|
||||
listen 8197;
|
||||
listen 80;
|
||||
server_name 176.123.26.42;
|
||||
|
||||
location / {
|
||||
rewrite ^/(.*)$ http://hdwallpapers.live/$1 permanent;
|
||||
}
|
||||
}
|
||||
44
nginx/conf.d/ganool/nginx/vhosts.d/disabled/goon.to.conf-old
Normal file
44
nginx/conf.d/ganool/nginx/vhosts.d/disabled/goon.to.conf-old
Normal file
@@ -0,0 +1,44 @@
|
||||
server {
|
||||
listen 80;
|
||||
server_name goon.to www.goon.to;
|
||||
|
||||
access_log off;
|
||||
error_log off;
|
||||
|
||||
location / {
|
||||
location ~.*\.(3gp|gif|jpg|jpeg|png|ico|wmv|avi|asf|asx|mpg|mpeg|mp4|pls|mp3|mid|wav|swf|flv|html|htm|txt|js|css|exe|zip|tar|rar|gz|tgz|bz2|uha|7z|doc|docx|xls|xlsx|pdf|iso|woff|ttf|svg|eot)\$ {
|
||||
expires 7d;#Comment this out if you are using the apache backend cache-control/expires headers.
|
||||
try_files \$uri \@backend;
|
||||
}
|
||||
|
||||
error_page 405 = \@backend;
|
||||
error_page 500 = \@custom;
|
||||
add_header X-Cache "HIT from Backend";
|
||||
|
||||
proxy_pass http://10.10.11.1:80;
|
||||
include proxy.inc;
|
||||
}
|
||||
|
||||
location \@backend {
|
||||
internal;
|
||||
proxy_pass http://10.10.11.1:80;
|
||||
|
||||
include proxy.inc;
|
||||
}
|
||||
|
||||
location \@custom {
|
||||
internal;
|
||||
proxy_pass http://10.10.11.1:80;
|
||||
include proxy.inc;
|
||||
}
|
||||
|
||||
location ~ .*\.(php|jsp|cgi|pl|py)?\$ {
|
||||
proxy_pass http://10.10.11.1:80;
|
||||
include proxy.inc;
|
||||
}
|
||||
|
||||
location ~ /\.ht {
|
||||
deny all;
|
||||
}
|
||||
|
||||
}
|
||||
@@ -0,0 +1,44 @@
|
||||
server {
|
||||
listen 80;
|
||||
server_name goon.to www.goon.to;
|
||||
|
||||
access_log off;
|
||||
error_log off;
|
||||
|
||||
location / {
|
||||
location ~.*\.(3gp|gif|jpg|jpeg|png|ico|wmv|avi|asf|asx|mpg|mpeg|mp4|pls|mp3|mid|wav|swf|flv|html|htm|txt|js|css|exe|zip|tar|rar|gz|tgz|bz2|uha|7z|doc|docx|xls|xlsx|pdf|iso|woff|ttf|svg|eot)\$ {
|
||||
expires 7d;#Comment this out if you are using the apache backend cache-control/expires headers.
|
||||
try_files \$uri \@backend;
|
||||
}
|
||||
|
||||
error_page 405 = \@backend;
|
||||
error_page 500 = \@custom;
|
||||
add_header X-Cache "HIT from Backend";
|
||||
|
||||
proxy_pass http://86.104.210.218:65432;
|
||||
include proxy.inc;
|
||||
}
|
||||
|
||||
location \@backend {
|
||||
internal;
|
||||
proxy_pass http://86.104.210.218:65432;
|
||||
|
||||
include proxy.inc;
|
||||
}
|
||||
|
||||
location \@custom {
|
||||
internal;
|
||||
proxy_pass http://86.104.210.218:65432;
|
||||
include proxy.inc;
|
||||
}
|
||||
|
||||
location ~ .*\.(php|jsp|cgi|pl|py)?\$ {
|
||||
proxy_pass http://86.104.210.218:65432;
|
||||
include proxy.inc;
|
||||
}
|
||||
|
||||
location ~ /\.ht {
|
||||
deny all;
|
||||
}
|
||||
|
||||
}
|
||||
@@ -0,0 +1,47 @@
|
||||
server {
|
||||
listen 80;
|
||||
|
||||
#Logging
|
||||
access_log off;
|
||||
error_log off;
|
||||
|
||||
server_name linkgen.to www.linkgen.to;
|
||||
|
||||
location / {
|
||||
location ~.*\.(3gp|gif|jpg|jpeg|png|ico|wmv|avi|asf|asx|mpg|mpeg|mp4|pls|mp3|mid|wav|swf|flv|html|htm|txt|js|css|exe|zip|tar|rar|gz|tgz|bz2|uha|7z|doc|docx|xls|xlsx|pdf|iso|woff|ttf|svg|eot)\$ {
|
||||
expires 7d;#Comment this out if you are using the apache backend cache-control/expires headers.
|
||||
try_files \$uri \@backend;
|
||||
}
|
||||
|
||||
error_page 405 = \@backend;
|
||||
error_page 500 = \@custom;
|
||||
add_header X-Cache "HIT from Backend";
|
||||
|
||||
proxy_pass http://10.208.99.26:100;
|
||||
include proxy.inc;
|
||||
}
|
||||
|
||||
location \@backend {
|
||||
internal;
|
||||
proxy_pass http://10.208.99.26:100;
|
||||
|
||||
include proxy.inc;
|
||||
}
|
||||
|
||||
location \@custom {
|
||||
internal;
|
||||
proxy_pass http://10.208.99.26:100;
|
||||
include proxy.inc;
|
||||
}
|
||||
|
||||
location ~ .*\.(php|jsp|cgi|pl|py)?\$ {
|
||||
proxy_pass http://10.208.99.26:100;
|
||||
include proxy.inc;
|
||||
}
|
||||
|
||||
location ~ /\.ht {
|
||||
deny all;
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
@@ -0,0 +1,45 @@
|
||||
server {
|
||||
listen 8197;
|
||||
listen 80;
|
||||
server_name download.cokeandpopcorn.click;
|
||||
|
||||
access_log off;
|
||||
error_log off;
|
||||
|
||||
location / {
|
||||
location ~.*\.(3gp|gif|jpg|jpeg|png|ico|wmv|avi|asf|asx|mpg|mpeg|mp4|pls|mp3|mid|wav|swf|flv|html|htm|txt|js|css|exe|zip|tar|rar|gz|tgz|bz2|uha|7z|doc|docx|xls|xlsx|pdf|iso|woff|ttf|svg|eot)\$ {
|
||||
expires 7d;#Comment this out if you are using the apache backend cache-control/expires headers.
|
||||
try_files \$uri \@backend;
|
||||
}
|
||||
|
||||
error_page 405 = \@backend;
|
||||
error_page 500 = \@custom;
|
||||
add_header X-Cache "HIT from Backend";
|
||||
|
||||
proxy_pass http://10.208.99.25:80;
|
||||
include proxy.inc;
|
||||
}
|
||||
|
||||
location \@backend {
|
||||
internal;
|
||||
proxy_pass http://10.208.99.25:80;
|
||||
|
||||
include proxy.inc;
|
||||
}
|
||||
|
||||
location \@custom {
|
||||
internal;
|
||||
proxy_pass http://10.208.99.25:80;
|
||||
include proxy.inc;
|
||||
}
|
||||
|
||||
location ~ .*\.(php|jsp|cgi|pl|py)?\$ {
|
||||
proxy_pass http://10.208.99.25:80;
|
||||
include proxy.inc;
|
||||
}
|
||||
|
||||
location ~ /\.ht {
|
||||
deny all;
|
||||
}
|
||||
|
||||
}
|
||||
45
nginx/conf.d/ganool/nginx/vhosts.d/escorte.pro.conf
Normal file
45
nginx/conf.d/ganool/nginx/vhosts.d/escorte.pro.conf
Normal file
@@ -0,0 +1,45 @@
|
||||
server {
|
||||
listen 8197;
|
||||
listen 80;
|
||||
server_name escorte.pro www.escorte.pro;
|
||||
|
||||
access_log off;
|
||||
error_log off;
|
||||
|
||||
location / {
|
||||
location ~.*\.(3gp|gif|jpg|jpeg|png|ico|wmv|avi|asf|asx|mpg|mpeg|mp4|pls|mp3|mid|wav|swf|flv|html|htm|txt|js|css|exe|zip|tar|rar|gz|tgz|bz2|uha|7z|doc|docx|xls|xlsx|pdf|iso|woff|ttf|svg|eot)\$ {
|
||||
expires 7d;#Comment this out if you are using the apache backend cache-control/expires headers.
|
||||
try_files \$uri \@backend;
|
||||
}
|
||||
|
||||
error_page 405 = \@backend;
|
||||
error_page 500 = \@custom;
|
||||
add_header X-Cache "HIT from Backend";
|
||||
|
||||
proxy_pass http://10.208.99.31:80;
|
||||
include proxy.inc;
|
||||
}
|
||||
|
||||
location \@backend {
|
||||
internal;
|
||||
proxy_pass http://10.208.99.31:80;
|
||||
|
||||
include proxy.inc;
|
||||
}
|
||||
|
||||
location \@custom {
|
||||
internal;
|
||||
proxy_pass http://10.208.99.31:80;
|
||||
include proxy.inc;
|
||||
}
|
||||
|
||||
location ~ .*\.(php|jsp|cgi|pl|py)?\$ {
|
||||
proxy_pass http://10.208.99.31:80;
|
||||
include proxy.inc;
|
||||
}
|
||||
|
||||
location ~ /\.ht {
|
||||
deny all;
|
||||
}
|
||||
|
||||
}
|
||||
45
nginx/conf.d/ganool/nginx/vhosts.d/escortereale.com.conf
Normal file
45
nginx/conf.d/ganool/nginx/vhosts.d/escortereale.com.conf
Normal file
@@ -0,0 +1,45 @@
|
||||
server {
|
||||
listen 8197;
|
||||
listen 80;
|
||||
server_name escortereale.com www.escortereale.com;
|
||||
|
||||
access_log off;
|
||||
error_log off;
|
||||
|
||||
location / {
|
||||
location ~.*\.(3gp|gif|jpg|jpeg|png|ico|wmv|avi|asf|asx|mpg|mpeg|mp4|pls|mp3|mid|wav|swf|flv|html|htm|txt|js|css|exe|zip|tar|rar|gz|tgz|bz2|uha|7z|doc|docx|xls|xlsx|pdf|iso|woff|ttf|svg|eot)\$ {
|
||||
expires 7d;#Comment this out if you are using the apache backend cache-control/expires headers.
|
||||
try_files \$uri \@backend;
|
||||
}
|
||||
|
||||
error_page 405 = \@backend;
|
||||
error_page 500 = \@custom;
|
||||
add_header X-Cache "HIT from Backend";
|
||||
|
||||
proxy_pass http://10.208.99.31:80;
|
||||
include proxy.inc;
|
||||
}
|
||||
|
||||
location \@backend {
|
||||
internal;
|
||||
proxy_pass http://10.208.99.31:80;
|
||||
|
||||
include proxy.inc;
|
||||
}
|
||||
|
||||
location \@custom {
|
||||
internal;
|
||||
proxy_pass http://10.208.99.31:80;
|
||||
include proxy.inc;
|
||||
}
|
||||
|
||||
location ~ .*\.(php|jsp|cgi|pl|py)?\$ {
|
||||
proxy_pass http://10.208.99.31:80;
|
||||
include proxy.inc;
|
||||
}
|
||||
|
||||
location ~ /\.ht {
|
||||
deny all;
|
||||
}
|
||||
|
||||
}
|
||||
45
nginx/conf.d/ganool/nginx/vhosts.d/escortero.com.conf
Normal file
45
nginx/conf.d/ganool/nginx/vhosts.d/escortero.com.conf
Normal file
@@ -0,0 +1,45 @@
|
||||
server {
|
||||
listen 8197;
|
||||
listen 80;
|
||||
server_name escortero.com www.escortero.com;
|
||||
|
||||
access_log off;
|
||||
error_log off;
|
||||
|
||||
location / {
|
||||
location ~.*\.(3gp|gif|jpg|jpeg|png|ico|wmv|avi|asf|asx|mpg|mpeg|mp4|pls|mp3|mid|wav|swf|flv|html|htm|txt|js|css|exe|zip|tar|rar|gz|tgz|bz2|uha|7z|doc|docx|xls|xlsx|pdf|iso|woff|ttf|svg|eot)\$ {
|
||||
expires 7d;#Comment this out if you are using the apache backend cache-control/expires headers.
|
||||
try_files \$uri \@backend;
|
||||
}
|
||||
|
||||
error_page 405 = \@backend;
|
||||
error_page 500 = \@custom;
|
||||
add_header X-Cache "HIT from Backend";
|
||||
|
||||
proxy_pass http://10.208.99.31:80;
|
||||
include proxy.inc;
|
||||
}
|
||||
|
||||
location \@backend {
|
||||
internal;
|
||||
proxy_pass http://10.208.99.31:80;
|
||||
|
||||
include proxy.inc;
|
||||
}
|
||||
|
||||
location \@custom {
|
||||
internal;
|
||||
proxy_pass http://10.208.99.31:80;
|
||||
include proxy.inc;
|
||||
}
|
||||
|
||||
location ~ .*\.(php|jsp|cgi|pl|py)?\$ {
|
||||
proxy_pass http://10.208.99.31:80;
|
||||
include proxy.inc;
|
||||
}
|
||||
|
||||
location ~ /\.ht {
|
||||
deny all;
|
||||
}
|
||||
|
||||
}
|
||||
46
nginx/conf.d/ganool/nginx/vhosts.d/escorteromania.com.conf
Normal file
46
nginx/conf.d/ganool/nginx/vhosts.d/escorteromania.com.conf
Normal file
@@ -0,0 +1,46 @@
|
||||
server {
|
||||
listen 8197;
|
||||
listen 80;
|
||||
server_name escorteromania.com www.escorteromania.com;
|
||||
|
||||
access_log off;
|
||||
error_log off;
|
||||
|
||||
location / {
|
||||
location ~.*\.(3gp|gif|jpg|jpeg|png|ico|wmv|avi|asf|asx|mpg|mpeg|mp4|pls|mp3|mid|wav|swf|flv|html|htm|txt|js|css|exe|zip|tar|rar|gz|tgz|bz2|uha|7z|doc|docx|xls|xlsx|pdf|iso|woff|ttf|svg|eot)\$ {
|
||||
expires 7d;#Comment this out if you are using the apache backend cache-control/expires headers.
|
||||
try_files \$uri \@backend;
|
||||
}
|
||||
|
||||
error_page 405 = \@backend;
|
||||
error_page 500 = \@custom;
|
||||
add_header X-Cache "HIT from Backend";
|
||||
|
||||
proxy_pass http://10.208.99.31:80;
|
||||
include proxy.inc;
|
||||
}
|
||||
|
||||
location \@backend {
|
||||
internal;
|
||||
proxy_pass http://10.208.99.31:80;
|
||||
|
||||
include proxy.inc;
|
||||
}
|
||||
|
||||
location \@custom {
|
||||
internal;
|
||||
proxy_pass http://10.208.99.31:80;
|
||||
include proxy.inc;
|
||||
}
|
||||
|
||||
location ~ .*\.(php|jsp|cgi|pl|py)?\$ {
|
||||
proxy_pass http://10.208.99.31:80;
|
||||
include proxy.inc;
|
||||
}
|
||||
|
||||
location ~ /\.ht {
|
||||
deny all;
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
48
nginx/conf.d/ganool/nginx/vhosts.d/file.rocks.conf
Normal file
48
nginx/conf.d/ganool/nginx/vhosts.d/file.rocks.conf
Normal file
@@ -0,0 +1,48 @@
|
||||
server {
|
||||
listen 8197;
|
||||
listen 80;
|
||||
|
||||
#Logging
|
||||
access_log off;
|
||||
error_log off;
|
||||
|
||||
server_name file.rocks www.file.rocks;
|
||||
|
||||
location / {
|
||||
location ~.*\.(3gp|gif|jpg|jpeg|png|ico|wmv|avi|asf|asx|mpg|mpeg|mp4|pls|mp3|mid|wav|swf|flv|html|htm|txt|js|css|exe|zip|tar|rar|gz|tgz|bz2|uha|7z|doc|docx|xls|xlsx|pdf|iso|woff|ttf|svg|eot)\$ {
|
||||
expires 7d;#Comment this out if you are using the apache backend cache-control/expires headers.
|
||||
try_files \$uri \@backend;
|
||||
}
|
||||
|
||||
error_page 405 = \@backend;
|
||||
error_page 500 = \@custom;
|
||||
add_header X-Cache "HIT from Backend";
|
||||
|
||||
proxy_pass http://10.208.99.26:99;
|
||||
include proxy.inc;
|
||||
}
|
||||
|
||||
location \@backend {
|
||||
internal;
|
||||
proxy_pass http://10.208.99.26:99;
|
||||
|
||||
include proxy.inc;
|
||||
}
|
||||
|
||||
location \@custom {
|
||||
internal;
|
||||
proxy_pass http://10.208.99.26:99;
|
||||
include proxy.inc;
|
||||
}
|
||||
|
||||
location ~ .*\.(php|jsp|cgi|pl|py)?\$ {
|
||||
proxy_pass http://10.208.99.26:99;
|
||||
include proxy.inc;
|
||||
}
|
||||
|
||||
location ~ /\.ht {
|
||||
deny all;
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
15
nginx/conf.d/ganool/nginx/vhosts.d/fmoviesfree.conf
Normal file
15
nginx/conf.d/ganool/nginx/vhosts.d/fmoviesfree.conf
Normal file
@@ -0,0 +1,15 @@
|
||||
server {
|
||||
access_log off;
|
||||
error_log off;
|
||||
|
||||
listen 8197;
|
||||
listen 80;
|
||||
|
||||
server_name fmoviesfree.com www.fmoviesfree.com;
|
||||
|
||||
location / {
|
||||
if ($http_host ~* "^(www\.)?fmoviesfree\.com$") {
|
||||
rewrite ^/(.*)$ http://cokeandpopcorn.click/$1 permanent;
|
||||
}
|
||||
}
|
||||
}
|
||||
16
nginx/conf.d/ganool/nginx/vhosts.d/ganool.ag.conf
Normal file
16
nginx/conf.d/ganool/nginx/vhosts.d/ganool.ag.conf
Normal file
@@ -0,0 +1,16 @@
|
||||
server {
|
||||
|
||||
access_log off;
|
||||
error_log off;
|
||||
|
||||
listen 8197;
|
||||
listen 80;
|
||||
|
||||
server_name ganool.ag www.ganool.ag;
|
||||
|
||||
location / {
|
||||
if ($http_host ~* "^(www\.)?ganool\.ag$") {
|
||||
rewrite ^/(.*)$ https://goody.to/$1 permanent;
|
||||
}
|
||||
}
|
||||
}
|
||||
16
nginx/conf.d/ganool/nginx/vhosts.d/ganool.com.conf
Normal file
16
nginx/conf.d/ganool/nginx/vhosts.d/ganool.com.conf
Normal file
@@ -0,0 +1,16 @@
|
||||
server {
|
||||
|
||||
access_log off;
|
||||
error_log off;
|
||||
|
||||
listen 8197;
|
||||
listen 80;
|
||||
|
||||
server_name ganool.com www.ganool.com;
|
||||
|
||||
location / {
|
||||
if ($http_host ~* "^(www\.)?ganool\.com$") {
|
||||
rewrite ^/(.*)$ https://goody.to/$1 permanent;
|
||||
}
|
||||
}
|
||||
}
|
||||
47
nginx/conf.d/ganool/nginx/vhosts.d/ganool.ee.conf
Normal file
47
nginx/conf.d/ganool/nginx/vhosts.d/ganool.ee.conf
Normal file
@@ -0,0 +1,47 @@
|
||||
server {
|
||||
listen 8197;
|
||||
listen 80;
|
||||
server_name ganool.ee www.ganool.ee;
|
||||
|
||||
#access_log /var/log/nginx/goon-access_log;
|
||||
#error_log /var/log/nginx/goon-error_log;
|
||||
access_log off;
|
||||
error_log off;
|
||||
|
||||
location / {
|
||||
location ~.*\.(3gp|gif|jpg|jpeg|png|ico|wmv|avi|asf|asx|mpg|mpeg|mp4|pls|mp3|mid|wav|swf|flv|html|htm|txt|js|css|exe|zip|tar|rar|gz|tgz|bz2|uha|7z|doc|docx|xls|xlsx|pdf|iso|woff|ttf|svg|eot)\$ {
|
||||
expires 7d;#Comment this out if you are using the apache backend cache-control/expires headers.
|
||||
try_files \$uri \@backend;
|
||||
}
|
||||
|
||||
error_page 405 = \@backend;
|
||||
error_page 500 = \@custom;
|
||||
add_header X-Cache "HIT from Backend";
|
||||
|
||||
proxy_pass http://10.208.99.25:80;
|
||||
include proxy.inc;
|
||||
}
|
||||
|
||||
location \@backend {
|
||||
internal;
|
||||
proxy_pass http://10.208.99.25:80;
|
||||
|
||||
include proxy.inc;
|
||||
}
|
||||
|
||||
location \@custom {
|
||||
internal;
|
||||
proxy_pass http://10.208.99.25:80;
|
||||
include proxy.inc;
|
||||
}
|
||||
|
||||
location ~ .*\.(php|jsp|cgi|pl|py)?\$ {
|
||||
proxy_pass http://10.208.99.25:80;
|
||||
include proxy.inc;
|
||||
}
|
||||
|
||||
location ~ /\.ht {
|
||||
deny all;
|
||||
}
|
||||
|
||||
}
|
||||
16
nginx/conf.d/ganool/nginx/vhosts.d/ganool.is.conf
Normal file
16
nginx/conf.d/ganool/nginx/vhosts.d/ganool.is.conf
Normal file
@@ -0,0 +1,16 @@
|
||||
server {
|
||||
|
||||
access_log off;
|
||||
error_log off;
|
||||
|
||||
listen 8197;
|
||||
listen 80;
|
||||
|
||||
server_name ganool.is www.ganool.is;
|
||||
|
||||
location / {
|
||||
if ($http_host ~* "^(www\.)?ganool\.is$") {
|
||||
rewrite ^/(.*)$ https://goody.to/$1 permanent;
|
||||
}
|
||||
}
|
||||
}
|
||||
16
nginx/conf.d/ganool/nginx/vhosts.d/ganool.ph.conf
Normal file
16
nginx/conf.d/ganool/nginx/vhosts.d/ganool.ph.conf
Normal file
@@ -0,0 +1,16 @@
|
||||
server {
|
||||
|
||||
access_log off;
|
||||
error_log off;
|
||||
|
||||
listen 8197;
|
||||
listen 80;
|
||||
|
||||
server_name ganool.ph www.ganool.ph;
|
||||
|
||||
location / {
|
||||
if ($http_host ~* "^(www\.)?ganool\.ph$") {
|
||||
rewrite ^/(.*)$ https://goody.to/$1 permanent;
|
||||
}
|
||||
}
|
||||
}
|
||||
16
nginx/conf.d/ganool/nginx/vhosts.d/ganool.sc.conf
Normal file
16
nginx/conf.d/ganool/nginx/vhosts.d/ganool.sc.conf
Normal file
@@ -0,0 +1,16 @@
|
||||
server {
|
||||
|
||||
access_log off;
|
||||
error_log off;
|
||||
|
||||
listen 8197;
|
||||
listen 80;
|
||||
|
||||
server_name ganool.sc www.ganool.sc;
|
||||
|
||||
location / {
|
||||
if ($http_host ~* "^(www\.)?ganool\.sc$") {
|
||||
rewrite ^/(.*)$ https://goody.to/$1 permanent;
|
||||
}
|
||||
}
|
||||
}
|
||||
45
nginx/conf.d/ganool/nginx/vhosts.d/ganool.se.conf
Normal file
45
nginx/conf.d/ganool/nginx/vhosts.d/ganool.se.conf
Normal file
@@ -0,0 +1,45 @@
|
||||
server {
|
||||
listen 8197;
|
||||
listen 80;
|
||||
server_name ganool.se www.ganool.se;
|
||||
|
||||
access_log off;
|
||||
error_log off;
|
||||
|
||||
location / {
|
||||
location ~.*\.(3gp|gif|jpg|jpeg|png|ico|wmv|avi|asf|asx|mpg|mpeg|mp4|pls|mp3|mid|wav|swf|flv|html|htm|txt|js|css|exe|zip|tar|rar|gz|tgz|bz2|uha|7z|doc|docx|xls|xlsx|pdf|iso|woff|ttf|svg|eot)\$ {
|
||||
expires 7d;#Comment this out if you are using the apache backend cache-control/expires headers.
|
||||
try_files \$uri \@backend;
|
||||
}
|
||||
|
||||
error_page 405 = \@backend;
|
||||
error_page 500 = \@custom;
|
||||
add_header X-Cache "HIT from Backend";
|
||||
|
||||
proxy_pass http://10.208.99.25:80;
|
||||
include proxy.inc;
|
||||
}
|
||||
|
||||
location \@backend {
|
||||
internal;
|
||||
proxy_pass http://10.208.99.25:80;
|
||||
|
||||
include proxy.inc;
|
||||
}
|
||||
|
||||
location \@custom {
|
||||
internal;
|
||||
proxy_pass http://10.208.99.25:80;
|
||||
include proxy.inc;
|
||||
}
|
||||
|
||||
location ~ .*\.(php|jsp|cgi|pl|py)?\$ {
|
||||
proxy_pass http://10.208.99.25:80;
|
||||
include proxy.inc;
|
||||
}
|
||||
|
||||
location ~ /\.ht {
|
||||
deny all;
|
||||
}
|
||||
|
||||
}
|
||||
Some files were not shown because too many files have changed in this diff Show More
Reference in New Issue
Block a user