Compare commits

..

No commits in common. "7ae20b3526916f65d00147950ffc470b99ea4fd0" and "7194da83586793a5f399cb68155103d58533c578" have entirely different histories.

4 changed files with 5 additions and 23 deletions

View File

@ -9,6 +9,7 @@ ENV NGX_GEOIP2_VERSION $ARG_NGX_GEOIP2_VERSION
# hadolint ignore=DL3018,DL3003,SC2086
RUN CONFIG=" \
--add-module=/tmp/ngx_http_geoip2_module-$NGX_GEOIP2_VERSION \
--with-stream \
--with-http_ssl_module \
--with-http_v2_module \
--with-http_stub_status_module \

View File

@ -1,3 +1,3 @@
NGINX_VERSION=1.18.0
NGINX_VERSION=1.17.10
NGX_GEOIP2_VERSION=3.3
DOCKER_IMAGE=dcarrillo/nginx

View File

@ -79,11 +79,5 @@ http {
location = /nginx_status {
stub_status on;
}
location = /phpfpm_status {
include /usr/local/nginx/conf/fastcgi_params;
fastcgi_pass php:9000;
fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name;
}
}
}

View File

@ -27,7 +27,6 @@ _cleanup()
echo "Cleaning up..."
docker rm -f "${NGINX_VERSION}"_test > /dev/null 2>&1
docker rm -f "${NGINX_VERSION}"_requester > /dev/null 2>&1
docker rm -f php > /dev/null 2>&1
rm -rf "$TMP_DIR"
}
@ -62,14 +61,8 @@ _check_if_is_ip()
_setup_crypto_stuff
echo "Preparing dcarrillo/php"
docker run --name php --rm -d dcarrillo/php > /dev/null
docker exec -i php sh -c "echo 'pm.status_path = /phpfpm_status' \
>> /usr/local/etc/php-fpm.d/www.conf \
&& kill -USR2 1"
echo "Running container to be tested..."
docker run --name "${NGINX_VERSION}"_test --rm --link php \
docker run --name "${NGINX_VERSION}"_test --rm \
-v "$LOCAL_DIR"/nginx.conf:/usr/local/nginx/conf/nginx.conf:ro \
-v "$LOCAL_DIR"/GeoLite2-Country.mmdb:/tmp/GeoLite2-Country.mmdb:ro \
-v "$TMP_DIR"/cert.pem:/tmp/cert.pem:ro \
@ -83,14 +76,8 @@ docker run --name "${NGINX_VERSION}"_requester --rm --link "${NGINX_VERSION}"_te
exec_docker="docker exec -i ${NGINX_VERSION}_requester"
$exec_docker apk add curl > /dev/null
## Test 1-4 http/https/fastcgipass
requests="
http://${NGINX_VERSION}_test/nginx_status
https://${NGINX_VERSION}_test/nginx_status
http://${NGINX_VERSION}_test/phpfpm_status
https://${NGINX_VERSION}_test/phpfpm_status
"
for request in $requests; do
## Test 1 status code by protocol
for request in http://${NGINX_VERSION}_test/nginx_status https://${NGINX_VERSION}_test/nginx_status; do
printf "\nRequesting %s\n" "$request"
STATUS_CODE=$($exec_docker curl -s -k -m 5 -o /dev/null -w "%{http_code}" "$request")
_check_status_code "$STATUS_CODE"