diff --git a/.github/workflows/test-core-linux.yml b/.github/workflows/test-core-linux.yml index b3f70e55d..616eca382 100644 --- a/.github/workflows/test-core-linux.yml +++ b/.github/workflows/test-core-linux.yml @@ -85,6 +85,7 @@ jobs: echo 'API_LISTEN_IP=127.0.0.1' | sudo tee -a /etc/bunkerweb/variables.env echo "USE_BUNKERNET=no" | sudo tee -a /etc/bunkerweb/variables.env echo "USE_BLACKLIST=no" | sudo tee -a /etc/bunkerweb/variables.env + echo "SEND_ANONYMOUS_REPORT=no" | sudo tee -a /etc/bunkerweb/variables.env echo "LOG_LEVEL=info" | sudo tee -a /etc/bunkerweb/variables.env sudo chown nginx:nginx /etc/bunkerweb/variables.env sudo chmod 777 /etc/bunkerweb/variables.env diff --git a/tests/core/antibot/docker-compose.yml b/tests/core/antibot/docker-compose.yml index 491fce5b8..5343ec772 100644 --- a/tests/core/antibot/docker-compose.yml +++ b/tests/core/antibot/docker-compose.yml @@ -11,6 +11,7 @@ services: HTTP_PORT: "80" USE_BUNKERNET: "no" USE_BLACKLIST: "no" + SEND_ANONYMOUS_REPORT: "no" USE_REVERSE_PROXY: "yes" REVERSE_PROXY_HOST: "http://app1:8080" REVERSE_PROXY_URL: "/" diff --git a/tests/core/authbasic/docker-compose.yml b/tests/core/authbasic/docker-compose.yml index 8a7a5af03..94454044a 100644 --- a/tests/core/authbasic/docker-compose.yml +++ b/tests/core/authbasic/docker-compose.yml @@ -11,6 +11,7 @@ services: HTTP_PORT: "80" USE_BUNKERNET: "no" USE_BLACKLIST: "no" + SEND_ANONYMOUS_REPORT: "no" USE_REVERSE_PROXY: "yes" REVERSE_PROXY_HOST: "http://app1:8080" REVERSE_PROXY_URL: "/" diff --git a/tests/core/badbehavior/docker-compose.yml b/tests/core/badbehavior/docker-compose.yml index e324aad99..776de7a9f 100644 --- a/tests/core/badbehavior/docker-compose.yml +++ b/tests/core/badbehavior/docker-compose.yml @@ -13,6 +13,7 @@ services: HTTP_PORT: "80" USE_BUNKERNET: "no" USE_BLACKLIST: "no" + SEND_ANONYMOUS_REPORT: "no" LOG_LEVEL: "info" # ? BAD_BEHAVIOR settings diff --git a/tests/core/blacklist/docker-compose.yml b/tests/core/blacklist/docker-compose.yml index f77535a0b..4b0a780e0 100644 --- a/tests/core/blacklist/docker-compose.yml +++ b/tests/core/blacklist/docker-compose.yml @@ -12,6 +12,7 @@ services: API_WHITELIST_IP: "127.0.0.0/8 10.20.30.0/24" HTTP_PORT: "80" USE_BUNKERNET: "no" + SEND_ANONYMOUS_REPORT: "no" LOG_LEVEL: "info" # ? BLACKLIST settings diff --git a/tests/core/brotli/docker-compose.yml b/tests/core/brotli/docker-compose.yml index d3bcc275f..5f2b6c0ae 100644 --- a/tests/core/brotli/docker-compose.yml +++ b/tests/core/brotli/docker-compose.yml @@ -11,6 +11,7 @@ services: HTTP_PORT: "80" USE_BUNKERNET: "no" USE_BLACKLIST: "no" + SEND_ANONYMOUS_REPORT: "no" USE_REVERSE_PROXY: "yes" REVERSE_PROXY_HOST: "http://app1:8080" REVERSE_PROXY_URL: "/" diff --git a/tests/core/bunkernet/docker-compose.yml b/tests/core/bunkernet/docker-compose.yml index d468884ad..a0c610b5b 100644 --- a/tests/core/bunkernet/docker-compose.yml +++ b/tests/core/bunkernet/docker-compose.yml @@ -12,6 +12,7 @@ services: API_WHITELIST_IP: "127.0.0.0/8 10.20.30.0/24" HTTP_PORT: "80" USE_BLACKLIST: "no" + SEND_ANONYMOUS_REPORT: "no" LOG_LEVEL: "info" # ? BUNKERNET settings diff --git a/tests/core/bwcli/docker-compose.yml b/tests/core/bwcli/docker-compose.yml index 37ad35df3..2b952eb89 100644 --- a/tests/core/bwcli/docker-compose.yml +++ b/tests/core/bwcli/docker-compose.yml @@ -12,6 +12,7 @@ services: API_WHITELIST_IP: "127.0.0.0/8 10.20.30.0/24" USE_BUNKERNET: "no" USE_BLACKLIST: "no" + SEND_ANONYMOUS_REPORT: "no" LOG_LEVEL: "info" USE_REDIS: "yes" REDIS_HOST: "bw-redis" diff --git a/tests/core/clientcache/docker-compose.yml b/tests/core/clientcache/docker-compose.yml index f5c8689ec..d7aba269c 100644 --- a/tests/core/clientcache/docker-compose.yml +++ b/tests/core/clientcache/docker-compose.yml @@ -13,6 +13,7 @@ services: HTTP_PORT: "80" USE_BUNKERNET: "no" USE_BLACKLIST: "no" + SEND_ANONYMOUS_REPORT: "no" LOG_LEVEL: "info" # ? CLIENT_CACHE settings diff --git a/tests/core/cors/docker-compose.yml b/tests/core/cors/docker-compose.yml index 010f68cd0..0d9f71b78 100644 --- a/tests/core/cors/docker-compose.yml +++ b/tests/core/cors/docker-compose.yml @@ -16,6 +16,7 @@ services: HTTPS_PORT: "443" USE_BUNKERNET: "no" USE_BLACKLIST: "no" + SEND_ANONYMOUS_REPORT: "no" REMOTE_PHP: "app1" REMOTE_PHP_PATH: "/app" LOG_LEVEL: "info" diff --git a/tests/core/country/docker-compose.yml b/tests/core/country/docker-compose.yml index 5de3e268f..9c1b0a1ab 100644 --- a/tests/core/country/docker-compose.yml +++ b/tests/core/country/docker-compose.yml @@ -13,6 +13,7 @@ services: HTTP_PORT: "80" USE_BUNKERNET: "no" USE_BLACKLIST: "no" + SEND_ANONYMOUS_REPORT: "no" LOG_LEVEL: "info" # ? COUNTRY settings diff --git a/tests/core/customcert/docker-compose.yml b/tests/core/customcert/docker-compose.yml index aeb5ee3d0..91f51100e 100644 --- a/tests/core/customcert/docker-compose.yml +++ b/tests/core/customcert/docker-compose.yml @@ -14,6 +14,7 @@ services: HTTPS_PORT: "443" USE_BUNKERNET: "no" USE_BLACKLIST: "no" + SEND_ANONYMOUS_REPORT: "no" LOG_LEVEL: "info" # ? CUSTOM_CERT settings diff --git a/tests/core/db/docker-compose.test.yml b/tests/core/db/docker-compose.test.yml index 639d1eba5..5cfb3b90b 100644 --- a/tests/core/db/docker-compose.test.yml +++ b/tests/core/db/docker-compose.test.yml @@ -13,6 +13,7 @@ services: GLOBAL_HTTP_PORT: "80" GLOBAL_USE_BUNKERNET: "no" GLOBAL_USE_BLACKLIST: "no" + GLOBAL_SEND_ANONYMOUS_REPORT: "no" GLOBAL_USE_REVERSE_PROXY: "yes" GLOBAL_REVERSE_PROXY_HOST: "http://app1:8080" GLOBAL_REVERSE_PROXY_URL: "/" diff --git a/tests/core/db/docker-compose.yml b/tests/core/db/docker-compose.yml index 443fbddf5..24ab44d3b 100644 --- a/tests/core/db/docker-compose.yml +++ b/tests/core/db/docker-compose.yml @@ -13,6 +13,7 @@ services: HTTP_PORT: "80" USE_BUNKERNET: "no" USE_BLACKLIST: "no" + SEND_ANONYMOUS_REPORT: "no" USE_REVERSE_PROXY: "yes" REVERSE_PROXY_HOST: "http://app1:8080" REVERSE_PROXY_URL: "/" diff --git a/tests/core/db/test.sh b/tests/core/db/test.sh index 811aa62d4..6ad823626 100755 --- a/tests/core/db/test.sh +++ b/tests/core/db/test.sh @@ -60,6 +60,7 @@ else export GLOBAL_LOG_LEVEL="info" export GLOBAL_USE_BUNKERNET="no" export GLOBAL_USE_BLACKLIST="no" + export GLOBAL_SEND_ANONYMOUS_REPORT="no" export GLOBAL_USE_REVERSE_PROXY="yes" export GLOBAL_REVERSE_PROXY_HOST="http://app1:8080" export GLOBAL_REVERSE_PROXY_URL="/" diff --git a/tests/core/dnsbl/docker-compose.yml b/tests/core/dnsbl/docker-compose.yml index 4a12bd921..60865a48c 100644 --- a/tests/core/dnsbl/docker-compose.yml +++ b/tests/core/dnsbl/docker-compose.yml @@ -13,6 +13,7 @@ services: HTTP_PORT: "80" USE_BUNKERNET: "no" USE_BLACKLIST: "no" + SEND_ANONYMOUS_REPORT: "no" LOG_LEVEL: "info" # ? DNSBL settings diff --git a/tests/core/errors/docker-compose.yml b/tests/core/errors/docker-compose.yml index c4cc02f00..bd4afa86c 100644 --- a/tests/core/errors/docker-compose.yml +++ b/tests/core/errors/docker-compose.yml @@ -14,6 +14,7 @@ services: HTTP_PORT: "80" USE_BUNKERNET: "no" USE_BLACKLIST: "no" + SEND_ANONYMOUS_REPORT: "no" LOG_LEVEL: "info" # ? ERRORS settings diff --git a/tests/core/greylist/docker-compose.yml b/tests/core/greylist/docker-compose.yml index 23ba6787d..146c475eb 100644 --- a/tests/core/greylist/docker-compose.yml +++ b/tests/core/greylist/docker-compose.yml @@ -12,6 +12,7 @@ services: API_WHITELIST_IP: "127.0.0.0/8 10.20.30.0/24" HTTP_PORT: "80" USE_BUNKERNET: "no" + SEND_ANONYMOUS_REPORT: "no" LOG_LEVEL: "info" # ? GREYLIST settings diff --git a/tests/core/gzip/docker-compose.yml b/tests/core/gzip/docker-compose.yml index 6ef950bf5..c32141c85 100644 --- a/tests/core/gzip/docker-compose.yml +++ b/tests/core/gzip/docker-compose.yml @@ -13,6 +13,7 @@ services: HTTP_PORT: "80" USE_BUNKERNET: "no" USE_BLACKLIST: "no" + SEND_ANONYMOUS_REPORT: "no" USE_REVERSE_PROXY: "yes" REVERSE_PROXY_HOST: "http://app1:8080" REVERSE_PROXY_URL: "/" diff --git a/tests/core/headers/docker-compose.yml b/tests/core/headers/docker-compose.yml index ba1cd62bf..72ddfd577 100644 --- a/tests/core/headers/docker-compose.yml +++ b/tests/core/headers/docker-compose.yml @@ -14,6 +14,7 @@ services: HTTPS_PORT: "443" USE_BUNKERNET: "no" USE_BLACKLIST: "no" + SEND_ANONYMOUS_REPORT: "no" LOG_LEVEL: "info" GENERATE_SELF_SIGNED_SSL: "no" REMOTE_PHP: "bw-php" diff --git a/tests/core/inject/docker-compose.yml b/tests/core/inject/docker-compose.yml index 1f1c883d7..05fe00869 100644 --- a/tests/core/inject/docker-compose.yml +++ b/tests/core/inject/docker-compose.yml @@ -13,6 +13,7 @@ services: HTTP_PORT: "80" USE_BUNKERNET: "no" USE_BLACKLIST: "no" + SEND_ANONYMOUS_REPORT: "no" LOG_LEVEL: "info" # ? INJECT settings diff --git a/tests/core/limit/docker-compose.yml b/tests/core/limit/docker-compose.yml index 7927b844c..71282c8d5 100644 --- a/tests/core/limit/docker-compose.yml +++ b/tests/core/limit/docker-compose.yml @@ -13,6 +13,7 @@ services: HTTP_PORT: "80" USE_BUNKERNET: "no" USE_BLACKLIST: "no" + SEND_ANONYMOUS_REPORT: "no" BAD_BEHAVIOR_STATUS_CODES: "400 401 403 405 429 444" LOG_LEVEL: "info" diff --git a/tests/core/misc/docker-compose.yml b/tests/core/misc/docker-compose.yml index 121479d74..8ba416245 100644 --- a/tests/core/misc/docker-compose.yml +++ b/tests/core/misc/docker-compose.yml @@ -14,6 +14,7 @@ services: HTTPS_PORT: "443" USE_BUNKERNET: "no" USE_BLACKLIST: "no" + SEND_ANONYMOUS_REPORT: "no" LOG_LEVEL: "info" GENERATE_SELF_SIGNED_SSL: "no" USE_MODSECURITY: "no" diff --git a/tests/core/modsecurity/docker-compose.yml b/tests/core/modsecurity/docker-compose.yml index dee2ce213..af788b9e2 100644 --- a/tests/core/modsecurity/docker-compose.yml +++ b/tests/core/modsecurity/docker-compose.yml @@ -13,6 +13,7 @@ services: HTTP_PORT: "80" USE_BUNKERNET: "no" USE_BLACKLIST: "no" + SEND_ANONYMOUS_REPORT: "no" LOG_LEVEL: "info" # ? MODECURITY settings diff --git a/tests/core/redirect/docker-compose.yml b/tests/core/redirect/docker-compose.yml index 08de61956..571d52ce3 100644 --- a/tests/core/redirect/docker-compose.yml +++ b/tests/core/redirect/docker-compose.yml @@ -13,6 +13,7 @@ services: HTTP_PORT: "80" USE_BUNKERNET: "no" USE_BLACKLIST: "no" + SEND_ANONYMOUS_REPORT: "no" LOG_LEVEL: "info" # ? REDIRECT settings diff --git a/tests/core/redis/docker-compose.yml b/tests/core/redis/docker-compose.yml index 9cbc865bf..138d4258c 100644 --- a/tests/core/redis/docker-compose.yml +++ b/tests/core/redis/docker-compose.yml @@ -14,6 +14,7 @@ services: API_WHITELIST_IP: "127.0.0.0/8 10.20.30.0/24 1.0.0.3" HTTP_PORT: "80" USE_BUNKERNET: "no" + SEND_ANONYMOUS_REPORT: "no" BLACKLIST_IP_URLS: "" LOG_LEVEL: "info" SESSIONS_NAME: "test" diff --git a/tests/core/reversescan/docker-compose.yml b/tests/core/reversescan/docker-compose.yml index 6e82fc3da..2e08f28e4 100644 --- a/tests/core/reversescan/docker-compose.yml +++ b/tests/core/reversescan/docker-compose.yml @@ -13,6 +13,7 @@ services: HTTP_PORT: "80" USE_BUNKERNET: "no" USE_BLACKLIST: "no" + SEND_ANONYMOUS_REPORT: "no" LOG_LEVEL: "info" # ? REVERSE_SCAN settings diff --git a/tests/core/selfsigned/docker-compose.yml b/tests/core/selfsigned/docker-compose.yml index f7e8a24e8..a16aa20cc 100644 --- a/tests/core/selfsigned/docker-compose.yml +++ b/tests/core/selfsigned/docker-compose.yml @@ -14,6 +14,7 @@ services: HTTPS_PORT: "443" USE_BUNKERNET: "no" USE_BLACKLIST: "no" + SEND_ANONYMOUS_REPORT: "no" LOG_LEVEL: "info" # ? SELF_SIGNED settings diff --git a/tests/core/sessions/docker-compose.yml b/tests/core/sessions/docker-compose.yml index 11e5ba86d..d37e16fc8 100644 --- a/tests/core/sessions/docker-compose.yml +++ b/tests/core/sessions/docker-compose.yml @@ -13,6 +13,7 @@ services: HTTP_PORT: "80" USE_BUNKERNET: "no" USE_BLACKLIST: "no" + SEND_ANONYMOUS_REPORT: "no" LOG_LEVEL: "info" USE_ANTIBOT: "cookie" diff --git a/tests/core/whitelist/docker-compose.yml b/tests/core/whitelist/docker-compose.yml index b2eb0de9a..25990be7b 100644 --- a/tests/core/whitelist/docker-compose.yml +++ b/tests/core/whitelist/docker-compose.yml @@ -12,6 +12,7 @@ services: API_WHITELIST_IP: "127.0.0.0/8 10.20.30.0/24" HTTP_PORT: "80" USE_BUNKERNET: "no" + SEND_ANONYMOUS_REPORT: "no" LOG_LEVEL: "info" USE_BLACKLIST: "yes" BLACKLIST_IP: "0.0.0.0/0"