add redirect page

This commit is contained in:
Valentin CZERYBA 2023-03-08 20:40:22 +01:00
parent ccc12e6b6f
commit 69d9f5309d
2 changed files with 14 additions and 3 deletions

View File

@ -18,7 +18,7 @@ do
cat /tmp/error_$i | awk -F "|" '{ if($2 == "400") print $1}' > /tmp/400_$i cat /tmp/error_$i | awk -F "|" '{ if($2 == "400") print $1}' > /tmp/400_$i
cat /tmp/404_$i | sort | uniq -c | awk '{ if($1 >= 5) print $2}' > /tmp/blacklist_404 cat /tmp/404_$i | sort | uniq -c | awk '{ if($1 >= 5) print $2}' > /tmp/blacklist_404
cat /tmp/400_$i |sort | uniq -c |awk '{ if($1 >= 5) print $2}' > /tmp/blacklist_400 cat /tmp/400_$i |sort | uniq -c |awk '{ if($1 >= 5) print $2}' > /tmp/blacklist_400
count=$(cat /tmp/blacklist_404 /tmp/blacklist_400 |grep -f ${BLACKLIST} -v |sort |uniq |wc -l) count=$(cat /tmp/blacklist_404 /tmp/blacklist_400 |grep -f ${BLACKLIST} -v |grep -f ${EXCLUDE} -v |sort |uniq |wc -l)
if [ ${count} -ne 0 ]; then if [ ${count} -ne 0 ]; then
echo "Nouvelle IP blacklisté" > ${MAIL} echo "Nouvelle IP blacklisté" > ${MAIL}
list_ip=($(cat /tmp/blacklist_400 /tmp/blacklist_404 |grep -f ${BLACKLIST} -v |grep -f ${EXCLUDE} -v |sort |uniq)) list_ip=($(cat /tmp/blacklist_400 /tmp/blacklist_404 |grep -f ${BLACKLIST} -v |grep -f ${EXCLUDE} -v |sort |uniq))

View File

@ -1,4 +1,14 @@
server { server {
if ($host = clarissariviere.fr) {
return 301 https://"www.clarissariviere.fr"$request_uri;
} # managed by Certbot
if ($host = clarissariviere.com) {
return 301 https://"www.clarissariviere.com"$request_uri;
} # managed by Certbot
access_log /var/log/nginx/clarissa_access.log main; access_log /var/log/nginx/clarissa_access.log main;
error_log /var/log/nginx/clarissa_error.log; error_log /var/log/nginx/clarissa_error.log;
#gzip_static off; #gzip_static off;
@ -28,6 +38,7 @@ server {
#proxy_set_header X-Forwarded-Proto $scheme; #proxy_set_header X-Forwarded-Proto $scheme;
sub_filter 'gouters.canalblog.com' "$host"; sub_filter 'gouters.canalblog.com' "$host";
sub_filter '<meta name="generator" content="CanalBlog - https://www.canalblog.com" />' ''; sub_filter '<meta name="generator" content="CanalBlog - https://www.canalblog.com" />' '';
#sub_filter '</head>' '<script async src="https://www.googletagmanager.com/gtag/js?id=G-MV336S1G9W"></script><script>window.dataLayer = window.dataLayer || []; function gtag(){dataLayer.push(arguments);} gtag("js", new Date()); gtag("config", "G-MV336S1G9W");</script></head>';
sub_filter_types text/html text/xml text/plain text/css; sub_filter_types text/html text/xml text/plain text/css;
sub_filter_once off; sub_filter_once off;
@ -67,12 +78,12 @@ server {
if ($host = clarissariviere.fr) { if ($host = clarissariviere.fr) {
return 301 https://$host$request_uri; return 301 https://"www.clarissariviere.fr"$request_uri;
} # managed by Certbot } # managed by Certbot
if ($host = clarissariviere.com) { if ($host = clarissariviere.com) {
return 301 https://$host$request_uri; return 301 https://"www.clarissariviere.com"$request_uri;
} # managed by Certbot } # managed by Certbot