From 1074cedc6cec7de42bd89a2bfcae858e21555b4e Mon Sep 17 00:00:00 2001 From: Geoff Taylor Date: Thu, 18 Jul 2019 11:39:14 -0400 Subject: [PATCH 01/24] initial commit --- .env.dist | 1 - .travis.yml | 54 +++++++++++++-------------- Dockerfile | 82 +++++++++++++++++++++++++++++++++++++++-- bin/entrypoint.sh | 67 +++++++++++++++++++++++++++++++++ bin/install-wp-tests.sh | 4 +- docker-compose.yml | 21 ++++++----- 6 files changed, 186 insertions(+), 43 deletions(-) create mode 100644 bin/entrypoint.sh diff --git a/.env.dist b/.env.dist index 73054db02..b4d6059b7 100644 --- a/.env.dist +++ b/.env.dist @@ -2,7 +2,6 @@ TEST_DB_NAME="wpgraphql_woocommerce_test" TEST_DB_HOST="127.0.0.1" TEST_DB_USER="root" TEST_DB_PASSWORD="" -WP_VERSION=latest SKIP_DB_CREATE=false WP_ROOT_FOLDER="/tmp/wordpress" TEST_SITE_WP_ADMIN_PATH="/wp-admin" diff --git a/.travis.yml b/.travis.yml index 56ee88402..8714b1243 100644 --- a/.travis.yml +++ b/.travis.yml @@ -3,6 +3,9 @@ dist: trusty language: php +services: + - docker + notifications: email: on_success: never @@ -11,9 +14,9 @@ notifications: branches: only: - develop - - release-v0.1.1 - release-v0.1.2 - release-v0.2.0 + - release-v0.2.1 cache: apt: true @@ -25,25 +28,27 @@ cache: env: global: - WP_CORE_DIR: /tmp/wordpress - - COVERAGE: false - - DEBUG: false + matrix: + - PHP_VERSION=7.2 WP_VERSION=latest COVERAGE=1 + - PHP_VERSION=7.2 PHPCS=1 + - PHP_VERSION=7.1 WP_VERSION=latest + - PHP_VERSION=7.0 WP_VERSION=latest + - PHP_VERSION=5.6 WP_VERSION=4.5 + - PHP_VERSION=5.6 WP_VERSION=latest DEBUG=1 + - PHP_VERSION=5.6 WP_VERSION=trunk -matrix: - include: - - php: 7.2 - env: WP_VERSION=latest COVERAGE=1 - - php: 7.2 - env: PHPCS=1 - - php: 7.1 - env: WP_VERSION=latest - - php: 7.0 - env: WP_VERSION=latest - - php: 5.6 - env: WP_VERSION=4.5 - - php: 5.6 - env: WP_VERSION=latest DEBUG=1 - - php: 5.6 - env: WP_VERSION=trunk +before_install: + - sudo rm /usr/local/bin/docker-compose + - curl -L https://github.com/docker/compose/releases/download/1.24.1/docker-compose-`uname -s`-`uname -m` > docker-compose + - chmod +x docker-compose + - sudo mv docker-compose /usr/local/bin + - | + # Remove Xdebug for a huge performance increase: + if [ -f ~/.phpenv/versions/$(phpenv version-name)/etc/conf.d/xdebug.ini ]; then + phpenv config-rm xdebug.ini + else + echo "xdebug.ini does not exist" + fi install: - | @@ -58,7 +63,8 @@ before_script: # Install and config Codeception cp .env.dist .env composer install-wp-tests - COMPOSER_MEMORY_LIMIT=-1 travis_retry composer install --prefer-source --no-interaction + travis_retry composer install --no-dev --prefer-source --no-interaction + docker-compose build --build-arg PHP_VERSION=$(PHP_VERSION) wpbrowser if [ "$COVERAGE" == "1" ]; then # Install Coveralls mkdir -p build/logs @@ -78,13 +84,7 @@ script: # Execute unit tests with coverage if specified, otherwise without coverage - | if [ ! -z "$WP_VERSION" ]; then - if [ "$COVERAGE" == "1" ]; then - vendor/bin/codecept run wpunit --coverage --coverage-xml - elif [ "$DEBUG" == "1" ]; then - vendor/bin/codecept run wpunit --debug - else - vendor/bin/codecept run wpunit - fi + docker-compose run --rm wpbrowser fi - | if [ "$PHPCS" == "1" ]; then diff --git a/Dockerfile b/Dockerfile index 9472ac3d8..41ee3c75f 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,4 +1,80 @@ -FROM ryanshoover/wp-browser +ARG PHP_VERSION +FROM php:${PHP_VERSION-7.2}-apache-stretch -RUN a2enmod rewrite && \ -service apache2 restart \ No newline at end of file +SHELL [ "/bin/bash", "-c" ] + +# Install required system packages +RUN apt-get update && \ + apt-get -y install \ + # WordPress dependencies + libjpeg-dev \ + libpng-dev \ + mysql-client \ + # CircleCI depedencies + git \ + ssh \ + tar \ + gzip \ + wget + +# Install php extensions +RUN docker-php-ext-install \ + bcmath \ + zip \ + gd \ + pdo_mysql \ + mysqli \ + opcache + +# Configure php +RUN echo "date.timezone = UTC" >> /usr/local/etc/php/php.ini + +# Install Dockerize +ENV DOCKERIZE_VERSION v0.6.1 +RUN wget https://github.com/jwilder/dockerize/releases/download/$DOCKERIZE_VERSION/dockerize-linux-amd64-$DOCKERIZE_VERSION.tar.gz \ + && tar -C /usr/local/bin -xzvf dockerize-linux-amd64-$DOCKERIZE_VERSION.tar.gz \ + && rm dockerize-linux-amd64-$DOCKERIZE_VERSION.tar.gz + + +# Install composer +ENV COMPOSER_ALLOW_SUPERUSER=1 + +RUN curl -sS https://getcomposer.org/installer | php -- \ + --filename=composer \ + --install-dir=/usr/local/bin + +# Install tool to speed up composer installations +RUN composer global require --optimize-autoloader \ + "hirak/prestissimo" + +# Install wp-browser and php-coveralls globally +RUN composer global require \ + phpunit/phpunit:8.1 \ + lucatume/wp-browser:^2.2 \ + league/factory-muffin:^3.0 \ + league/factory-muffin-faker:^2.0 + +# Add composer global binaries to PATH +ENV PATH "$PATH:~/.composer/vendor/bin" + +# Set up WordPress config +ENV WP_ROOT_FOLDER="/var/www/html" +ENV WP_URL="http://localhost" +ENV WP_DOMAIN="localhost" +ENV WP_TABLE_PREFIX="wp_" +ENV ADMIN_EMAIL="admin@wordpress.local" +ENV ADMIN_USERNAME="admin" +ENV ADMIN_PASSWORD="password" + +# Set up wp-browser / codeception +WORKDIR /var/www/config +COPY codeception.docker.yml codeception.dist.yml + +# Set up Apache +RUN echo 'ServerName localhost' >> /etc/apache2/apache2.conf + +# Set up entrypoint +WORKDIR /var/www/html +COPY bin/entrypoint.sh /entrypoint.sh +RUN chmod 755 /entrypoint.sh +ENTRYPOINT ["/entrypoint.sh"] \ No newline at end of file diff --git a/bin/entrypoint.sh b/bin/entrypoint.sh new file mode 100644 index 000000000..e70d18b0a --- /dev/null +++ b/bin/entrypoint.sh @@ -0,0 +1,67 @@ +#!/bin/bash + +# Ensure mysql is loaded +dockerize -wait tcp://$DB_HOST:3306 -timeout 1m + +# Ensure Apache is running +service apache2 start + +# Enable Mod Rewrite and restart Apache +a2enmod rewrite +service apache2 restart + +# Link codeception config if not yet linked +if [ ! -e codeception.dist.yml ]; then + ln -s /var/www/config/codeception.dist.yml /var/www/html/codeception.dist.yml +fi + +# Download WordPress +wp core download \ + --path=/var/www/html \ + --quiet \ + --allow-root + +# Config WordPress +wp config create \ + --path=/var/www/html \ + --dbname="$DB_NAME" \ + --dbuser="$DB_USER" \ + --dbpass="$DB_PASSWORD" \ + --dbhost="$DB_HOST" \ + --dbprefix="$WP_TABLE_PREFIX" \ + --skip-check \ + --quiet \ + --allow-root + +# Install WP if not yet installed +if ! $( wp core is-installed --allow-root ); then + wp core install \ + --path=/var/www/html \ + --url=$WP_URL \ + --title='Test' \ + --admin_user=$ADMIN_USERNAME \ + --admin_password=$ADMIN_PASSWORD \ + --admin_email=$ADMIN_EMAIL \ + --allow-root +fi + +mkdir -p /var/www/html/wp-content + +wp db export \ + /var/www/html/wp-content/mysql.sql \ + --allow-root + +# Run the tests +if [ "$COVERAGE" == "1" ]; then + codecept run acceptance --coverage --coverage-xml + codecept run functional --coverage --coverage-xml + codecept run wpunit --coverage --coverage-xml +elif [ "$DEBUG" == "1" ]; then + codecept run acceptance --debug + codecept run functional --debug + codecept run wpunit --debug +else + codecept run acceptance + codecept run functional + codecept run wpunit +fi \ No newline at end of file diff --git a/bin/install-wp-tests.sh b/bin/install-wp-tests.sh index be5f24441..0b27bc3e3 100755 --- a/bin/install-wp-tests.sh +++ b/bin/install-wp-tests.sh @@ -31,7 +31,7 @@ else DB_HOST=$TEST_DB_HOST fi if [ -z "$WP_VERSION" ]; then - WP_VERSION=latest + fi if [ -z "$SKIP_DB_CREATE" ]; then SKIP_DB_CREATE=false @@ -42,7 +42,7 @@ if [[ -z "$TEST_SITE_WP_URL" ]]; then else DB_NAME=$TEST_DB_NAME fi - +WP_VERSION=${WP_VERSION-latest} TMPDIR=${TMPDIR-/tmp} TMPDIR=$(echo $TMPDIR | sed -e "s/\/$//") WP_TESTS_DIR=${WP_TESTS_DIR-$TMPDIR/wordpress-tests-lib} diff --git a/docker-compose.yml b/docker-compose.yml index d8c29724b..626b48fc8 100644 --- a/docker-compose.yml +++ b/docker-compose.yml @@ -8,17 +8,18 @@ services: links: - db:mysql volumes: - - "/tmp/wordpress/wp-content:/var/www/html/wp-content" - - "./tests:/var/www/html/tests" - - "./codeception.docker.yml:/var/www/config/codeception.dist.yml" - - ".:/var/www/html/wp-content/plugins/wp-graphql-woocommerce" - command: bash -c "codecept run functional --debug && codecept run acceptance && codecept run wpunit" + - '$WP_CORE_DIR/wp-content:/var/www/html/wp-content' + - './tests:/var/www/html/tests' + - './codeception.docker.yml:/var/www/config/codeception.dist.yml' + - '.:/var/www/html/wp-content/plugins/wp-graphql-woocommerce' environment: - DB_NAME: wordpress - DB_HOST: db - DB_USER: wordpress - DB_PASSWORD: wordpress - WPGRAPHQL_WOOCOMMERCE_AUTOLOAD: 1 + - DB_NAME=wordpress + - DB_HOST=db + - DB_USER=wordpress + - DB_PASSWORD=wordpress + - WPGRAPHQL_WOOCOMMERCE_AUTOLOAD=1 + - COVERAGE + - DEBUG ports: - 8080:80 From 747eb9cebd8aa22b201fe1cfff043be9b8aa4601 Mon Sep 17 00:00:00 2001 From: Geoff Taylor Date: Thu, 18 Jul 2019 12:01:12 -0400 Subject: [PATCH 02/24] README.md and project version updated. --- composer.json | 2 +- wp-graphql-woocommerce.php | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/composer.json b/composer.json index 840d916a7..ffeb55dfe 100644 --- a/composer.json +++ b/composer.json @@ -1,7 +1,7 @@ { "name": "wp-graphql/wp-graphql-woocommerce", "description": "WooCommerce bindings for wp-graphql", - "version": "0.2.0", + "version": "0.2.1", "type": "wordpress-plugin", "keywords": [ "wordpress", diff --git a/wp-graphql-woocommerce.php b/wp-graphql-woocommerce.php index 0ffaadd49..8c4924c01 100644 --- a/wp-graphql-woocommerce.php +++ b/wp-graphql-woocommerce.php @@ -3,7 +3,7 @@ * Plugin Name: WP GraphQL WooCommerce * Plugin URI: https://github.com/kidunot89/wp-graphql-woocommerce * Description: Adds Woocommerce Functionality to WPGraphQL schema. - * Version: 0.2.0 + * Version: 0.2.1 * Author: kidunot89 * Author URI: https://axistaylor.com * Text Domain: wp-graphql-woocommerce From 94f0481e7924dd9646e754d26fbc702bad21c767 Mon Sep 17 00:00:00 2001 From: Geoff Taylor Date: Thu, 18 Jul 2019 12:16:38 -0400 Subject: [PATCH 03/24] variable substitution fixed. --- Dockerfile | 4 ++-- README.md | 21 ++++++++++++++------- 2 files changed, 16 insertions(+), 9 deletions(-) diff --git a/Dockerfile b/Dockerfile index 41ee3c75f..3d36fd14a 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,5 +1,5 @@ -ARG PHP_VERSION -FROM php:${PHP_VERSION-7.2}-apache-stretch +ARG PHP_VERSION=7.2 +FROM php:${PHP_VERSION}-apache-stretch SHELL [ "/bin/bash", "-c" ] diff --git a/README.md b/README.md index a99259742..5139fe555 100644 --- a/README.md +++ b/README.md @@ -46,12 +46,9 @@ Until the documentation is in full effect, it's recommended that a [GraphiQL](ht TEST_DB_PASSWORD="" # Install script - WP_VERSION=latest SKIP_DB_CREATE=false - WP_GRAPHQL_BRANCH=develop # Codeception - WP_ROOT_FOLDER="/tmp/wordpress" TEST_SITE_WP_ADMIN_PATH="/wp-admin" TEST_SITE_DB_NAME="wpgraphql_woocommerce_test" TEST_SITE_DB_HOST="127.0.0.1" @@ -59,9 +56,9 @@ Until the documentation is in full effect, it's recommended that a [GraphiQL](ht TEST_SITE_DB_PASSWORD="" TEST_SITE_TABLE_PREFIX="wp_" TEST_TABLE_PREFIX="wp_" - TEST_SITE_WP_URL="http://wp.test" - TEST_SITE_WP_DOMAIN="wp.test" - TEST_SITE_ADMIN_EMAIL="admin@wp.test" + TEST_SITE_WP_URL="http://localhost" + TEST_SITE_WP_DOMAIN="localhost" + TEST_SITE_ADMIN_EMAIL="admin@localhost" TEST_SITE_ADMIN_USERNAME="admin" TEST_SITE_ADMIN_PASSWORD="password" ``` @@ -69,7 +66,6 @@ Until the documentation is in full effect, it's recommended that a [GraphiQL](ht - `Install script` variables are specified to the `install-wp-tests` script, and most likely won't changed. I've listed their meaning below. - `WP_VERSION` WordPress version used for testing - `SKIP_DB_CREATE` Should database creation be skipped? - - `WP_GRAPHQL_BRANCH` The branch in the `WPGraphQL` repository the tests should be run again. Ex. `origin/feature/model-layer` - `Codeception` variables are specified to the **Codeception** configuration. View the config files and Codeception's [Docs](https://codeception.com/docs/reference/Configuration#Suite-Configuration) for more info on them. 4. Once you have finish modifying the `.env` file. Run `composer install-wp-tests` from the project directory. @@ -81,6 +77,17 @@ If you use the command with at least a `suite` specified, **Codeception** will r To learn more about the usage of Codeception with WordPress view the [Documentation](https://codeception.com/for/wordpress) +## Functional and Acceptance Tests (Docker/Docker-Compose required) +It's possible to run functional and acceptance tests, but is very limited at the moment. The script docker entrypoint script runs all three suites (acceptance, functional, and wpunit) at once. This will change eventually, however as of right now, this is the limitation. + +### Running tests +Even though the two suite use a Docker environment to run, the docker environment relies on a few environmental variables defined in `.env` and a volume source provided by the test install script. +0. Ensure that you can copy `.env.dist` to `.env`. +1. First you must run `composer install-wp-tests` to ensure the required dependencies are available. +2. Next run `docker-compose build` from the terminal in the project root directory, to build the docker image for test environment. +3. And now you're ready to run the tests. Running `docker-compose run --rm wpbrowser` does just that. +You can rerun the tests by simply repeating step 3. + ## HTTP Error 500 :construction: If you get HTTP 500 error upon activation or accessing the `endpoint` and have **CMD/Terminal** access with **Composer** installed. - Try deleting the `vendor` directory `rm -rf vendor` and regenerating the autoloading files `composer dumpautoload -o` in the `wp-graphql-woocommerce` directory in your WordPress installation's `plugins` directory. From a61e6784f980b70a8cd672a697a1965a69a8e1c5 Mon Sep 17 00:00:00 2001 From: Geoff Taylor Date: Thu, 18 Jul 2019 12:31:49 -0400 Subject: [PATCH 04/24] php-coveralls added to docker test environment. --- Dockerfile | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index 3d36fd14a..1fe9277b0 100644 --- a/Dockerfile +++ b/Dockerfile @@ -52,7 +52,8 @@ RUN composer global require \ phpunit/phpunit:8.1 \ lucatume/wp-browser:^2.2 \ league/factory-muffin:^3.0 \ - league/factory-muffin-faker:^2.0 + league/factory-muffin-faker:^2.0 \ + php-coveralls/php-coveralls # Add composer global binaries to PATH ENV PATH "$PATH:~/.composer/vendor/bin" From fb3b8933c7cf70a56c32f7b8422b414d5c019e99 Mon Sep 17 00:00:00 2001 From: Geoff Taylor Date: Thu, 18 Jul 2019 12:49:44 -0400 Subject: [PATCH 05/24] Problematic if statement removed. --- bin/install-wp-tests.sh | 3 --- 1 file changed, 3 deletions(-) diff --git a/bin/install-wp-tests.sh b/bin/install-wp-tests.sh index 0b27bc3e3..aa15cb188 100755 --- a/bin/install-wp-tests.sh +++ b/bin/install-wp-tests.sh @@ -29,9 +29,6 @@ if [[ -z "$TEST_DB_HOST" ]]; then DB_HOST=localhost else DB_HOST=$TEST_DB_HOST -fi -if [ -z "$WP_VERSION" ]; then - fi if [ -z "$SKIP_DB_CREATE" ]; then SKIP_DB_CREATE=false From f948f22671fa96e9b39c083578d0db8e22369e5d Mon Sep 17 00:00:00 2001 From: Geoff Taylor Date: Thu, 18 Jul 2019 13:16:21 -0400 Subject: [PATCH 06/24] Problematic database upgrade statement removed. --- bin/install-wp-tests.sh | 2 -- 1 file changed, 2 deletions(-) diff --git a/bin/install-wp-tests.sh b/bin/install-wp-tests.sh index aa15cb188..468bad584 100755 --- a/bin/install-wp-tests.sh +++ b/bin/install-wp-tests.sh @@ -193,8 +193,6 @@ configure_wordpress() { setup_woocommerce() { echo "Installing & Activating WooCommerce" wp plugin install woocommerce --activate - echo "Upgrading database" - wp wc update echo "Installing & Activating WordPress Importer" wp plugin install wordpress-importer wp plugin activate wordpress-importer From b217745886e319ddfdce2901a5d7f0e44357ee22 Mon Sep 17 00:00:00 2001 From: Geoff Taylor Date: Thu, 18 Jul 2019 13:21:27 -0400 Subject: [PATCH 07/24] Removed Xdebug disable code. --- .travis.yml | 7 ------- 1 file changed, 7 deletions(-) diff --git a/.travis.yml b/.travis.yml index 8714b1243..6aacd582e 100644 --- a/.travis.yml +++ b/.travis.yml @@ -42,13 +42,6 @@ before_install: - curl -L https://github.com/docker/compose/releases/download/1.24.1/docker-compose-`uname -s`-`uname -m` > docker-compose - chmod +x docker-compose - sudo mv docker-compose /usr/local/bin - - | - # Remove Xdebug for a huge performance increase: - if [ -f ~/.phpenv/versions/$(phpenv version-name)/etc/conf.d/xdebug.ini ]; then - phpenv config-rm xdebug.ini - else - echo "xdebug.ini does not exist" - fi install: - | From 453d72d8841d113a195fa33d664b429aff61e888 Mon Sep 17 00:00:00 2001 From: Geoff Taylor Date: Thu, 18 Jul 2019 13:36:05 -0400 Subject: [PATCH 08/24] Fixes ARG declaration. --- Dockerfile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Dockerfile b/Dockerfile index 1fe9277b0..d1ee347c4 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,5 +1,5 @@ -ARG PHP_VERSION=7.2 -FROM php:${PHP_VERSION}-apache-stretch +ARG PHP_VERSION +FROM php:${PHP_VERSION:-7.2}-apache-stretch SHELL [ "/bin/bash", "-c" ] From d7948b25d47e67c492248add5d3f277cfe4300d5 Mon Sep 17 00:00:00 2001 From: Geoff Taylor Date: Thu, 18 Jul 2019 14:58:03 -0400 Subject: [PATCH 09/24] dependency required versions updated --- .travis.yml | 5 +++-- README.txt | 12 +++++++----- 2 files changed, 10 insertions(+), 7 deletions(-) diff --git a/.travis.yml b/.travis.yml index 6aacd582e..9e7f5e3e2 100644 --- a/.travis.yml +++ b/.travis.yml @@ -29,11 +29,12 @@ env: global: - WP_CORE_DIR: /tmp/wordpress matrix: - - PHP_VERSION=7.2 WP_VERSION=latest COVERAGE=1 + - PHP_VERSION=7.3 WP_VERSION=latest COVERAGE=1 - PHP_VERSION=7.2 PHPCS=1 + - PHP_VERSION=7.2 WP_VERSION=latest - PHP_VERSION=7.1 WP_VERSION=latest - PHP_VERSION=7.0 WP_VERSION=latest - - PHP_VERSION=5.6 WP_VERSION=4.5 + - PHP_VERSION=5.6 WP_VERSION=4.9 - PHP_VERSION=5.6 WP_VERSION=latest DEBUG=1 - PHP_VERSION=5.6 WP_VERSION=trunk diff --git a/README.txt b/README.txt index eb6e7c8b7..923285cdf 100644 --- a/README.txt +++ b/README.txt @@ -1,11 +1,13 @@ === WP GraphQL WooCommerce === Contributors: kidunot89 -Tags: GraphQL, WooCommerce -Requires at least: 4.7.0 -Tested up to: 5.1 +Tags: GraphQL, WooCommerce, WPGraphQL +Requires at least: 4.9 +Tested up to: 5.2 +Requires PHP: 5.6 +Stable tag: 0.2.1 License: GPL-3 License URI: https://www.gnu.org/licenses/gpl-3.0.html -Maintained at: https://github.com/kidunot89/wp-graphql-woocommerce +Maintained at: https://github.com/wp-graphql/wp-graphql-woocommerce == Description == -Adds WooCommerce Types to WPGraphQL schema +Adds WooCommerce functionality to the WPGraphQL schema From 963599a4c84694269ac5dc91a0e9b398f09caa74 Mon Sep 17 00:00:00 2001 From: Geoff Taylor Date: Thu, 18 Jul 2019 15:56:19 -0400 Subject: [PATCH 10/24] Install xdebug --- .travis.yml | 2 +- Dockerfile | 6 ++++++ README.txt | 2 +- bin/entrypoint.sh | 3 +++ 4 files changed, 11 insertions(+), 2 deletions(-) diff --git a/.travis.yml b/.travis.yml index 9e7f5e3e2..726385d7f 100644 --- a/.travis.yml +++ b/.travis.yml @@ -58,12 +58,12 @@ before_script: cp .env.dist .env composer install-wp-tests travis_retry composer install --no-dev --prefer-source --no-interaction - docker-compose build --build-arg PHP_VERSION=$(PHP_VERSION) wpbrowser if [ "$COVERAGE" == "1" ]; then # Install Coveralls mkdir -p build/logs COMPOSER_MEMORY_LIMIT=-1 travis_retry composer require php-coveralls/php-coveralls fi + docker-compose build --build-arg PHP_VERSION=$(PHP_VERSION) wpbrowser ls -al fi # Install PHP CodeSniffer and WPCS. diff --git a/Dockerfile b/Dockerfile index d1ee347c4..552571341 100644 --- a/Dockerfile +++ b/Dockerfile @@ -26,6 +26,12 @@ RUN docker-php-ext-install \ mysqli \ opcache +# Install Xdebug +RUN yes | pecl install xdebug \ + && echo "zend_extension=$(find /usr/local/lib/php/extensions/ -name xdebug.so)" > /usr/local/etc/php/conf.d/xdebug.ini \ + && echo "xdebug.remote_enable=on" >> /usr/local/etc/php/conf.d/xdebug.ini \ + && echo "xdebug.remote_autostart=off" >> /usr/local/etc/php/conf.d/xdebug.ini + # Configure php RUN echo "date.timezone = UTC" >> /usr/local/etc/php/php.ini diff --git a/README.txt b/README.txt index 923285cdf..7cf43a476 100644 --- a/README.txt +++ b/README.txt @@ -10,4 +10,4 @@ License URI: https://www.gnu.org/licenses/gpl-3.0.html Maintained at: https://github.com/wp-graphql/wp-graphql-woocommerce == Description == -Adds WooCommerce functionality to the WPGraphQL schema +Adds WooCommerce functionality to the WPGraphQL schema. diff --git a/bin/entrypoint.sh b/bin/entrypoint.sh index e70d18b0a..94bb99129 100644 --- a/bin/entrypoint.sh +++ b/bin/entrypoint.sh @@ -47,6 +47,9 @@ fi mkdir -p /var/www/html/wp-content +# Build Code coverage log directory +mkdir -p /var/www/html/build/logs + wp db export \ /var/www/html/wp-content/mysql.sql \ --allow-root From c7c2db51ccebd219b8103d838b68ffd953ac7eb1 Mon Sep 17 00:00:00 2001 From: Geoff Taylor Date: Thu, 18 Jul 2019 16:11:41 -0400 Subject: [PATCH 11/24] xdebug replaced with pcov --- .travis.yml | 7 +++++++ Dockerfile | 10 +++------- codeception.docker.yml | 1 + 3 files changed, 11 insertions(+), 7 deletions(-) diff --git a/.travis.yml b/.travis.yml index 726385d7f..11daab389 100644 --- a/.travis.yml +++ b/.travis.yml @@ -43,6 +43,13 @@ before_install: - curl -L https://github.com/docker/compose/releases/download/1.24.1/docker-compose-`uname -s`-`uname -m` > docker-compose - chmod +x docker-compose - sudo mv docker-compose /usr/local/bin + - | + # Remove Xdebug for a huge performance increase: + if [ -f ~/.phpenv/versions/$(phpenv version-name)/etc/conf.d/xdebug.ini ]; then + phpenv config-rm xdebug.ini + else + echo "xdebug.ini does not exist" + fi install: - | diff --git a/Dockerfile b/Dockerfile index 552571341..4d621ebb7 100644 --- a/Dockerfile +++ b/Dockerfile @@ -24,13 +24,9 @@ RUN docker-php-ext-install \ gd \ pdo_mysql \ mysqli \ - opcache - -# Install Xdebug -RUN yes | pecl install xdebug \ - && echo "zend_extension=$(find /usr/local/lib/php/extensions/ -name xdebug.so)" > /usr/local/etc/php/conf.d/xdebug.ini \ - && echo "xdebug.remote_enable=on" >> /usr/local/etc/php/conf.d/xdebug.ini \ - && echo "xdebug.remote_autostart=off" >> /usr/local/etc/php/conf.d/xdebug.ini + opcache \ + pcov \ + && docker-php-ext-enable pcov # Configure php RUN echo "date.timezone = UTC" >> /usr/local/etc/php/php.ini diff --git a/codeception.docker.yml b/codeception.docker.yml index 1592e97b2..461c9a1df 100644 --- a/codeception.docker.yml +++ b/codeception.docker.yml @@ -12,6 +12,7 @@ settings: memory_limit: 1024M coverage: enabled: true + remote: false whitelist: include: - wp-content/plugins/wp-graphql-woocommerce/wp-graphql-woocommerce.php From b16a195243c828fd396562998bdffa24a9494e97 Mon Sep 17 00:00:00 2001 From: Geoff Taylor Date: Tue, 23 Jul 2019 19:38:53 -0400 Subject: [PATCH 12/24] Docker configuration refactor. Debugging needed. --- .env.dist | 36 +- .gitignore | 2 + .log/access.log | 917 ++++++++++++++++++++++ .log/app/access.log | 81 ++ .log/app/error.log | 16 + .log/app/other_vhosts_access.log | 0 .log/error.log | 25 + .log/other_vhosts_access.log | 0 .log/testing/access.log | 9 + .log/testing/error.log | 9 + .log/testing/other_vhosts_access.log | 0 .travis.yml | 23 +- Dockerfile | 92 +-- Dockerfile.tester | 51 ++ bin/entrypoint.sh | 108 +-- bin/install-wp-tests.sh | 9 +- bin/testing-entrypoint.sh | 35 + codeception.docker.yml | 34 +- codeception.yml | 29 +- docker-compose.yml | 85 +- tests/functional/QLSessionHandlerCest.php | 19 - wp-graphql-woocommerce.php | 4 +- 22 files changed, 1366 insertions(+), 218 deletions(-) create mode 100644 .log/access.log create mode 100644 .log/app/access.log create mode 100644 .log/app/error.log create mode 100644 .log/app/other_vhosts_access.log create mode 100644 .log/error.log create mode 100644 .log/other_vhosts_access.log create mode 100644 .log/testing/access.log create mode 100644 .log/testing/error.log create mode 100644 .log/testing/other_vhosts_access.log create mode 100644 Dockerfile.tester create mode 100644 bin/testing-entrypoint.sh diff --git a/.env.dist b/.env.dist index b4d6059b7..acfb4cb15 100644 --- a/.env.dist +++ b/.env.dist @@ -1,18 +1,20 @@ -TEST_DB_NAME="wpgraphql_woocommerce_test" -TEST_DB_HOST="127.0.0.1" -TEST_DB_USER="root" -TEST_DB_PASSWORD="" +DB_NAME=wordpress +DB_HOST=127.0.0.1 +DB_USER=wordpress +DB_PASSWORD=wordpress +WP_TABLE_PREFIX=wp_ +WP_URL=http://localhost +WP_DOMAIN=localhost +ADMIN_EMAIL=admin@localhost +ADMIN_USERNAME=admin +ADMIN_PASSWORD=password +ADMIN_PATH=/wp-admin + SKIP_DB_CREATE=false -WP_ROOT_FOLDER="/tmp/wordpress" -TEST_SITE_WP_ADMIN_PATH="/wp-admin" -TEST_SITE_DB_NAME="wpgraphql_woocommerce_test" -TEST_SITE_DB_HOST="127.0.0.1" -TEST_SITE_DB_USER="root" -TEST_SITE_DB_PASSWORD="" -TEST_SITE_TABLE_PREFIX="wp_" -TEST_TABLE_PREFIX="wp_" -TEST_SITE_WP_URL="http://localhost" -TEST_SITE_WP_DOMAIN="localhost" -TEST_SITE_ADMIN_EMAIL="admin@localhost" -TEST_SITE_ADMIN_USERNAME="admin" -TEST_SITE_ADMIN_PASSWORD="password" \ No newline at end of file +TEST_WP_ROOT_FOLDER=/tmp/wordpress +TEST_DB_NAME=wpgraphql_woocommerce_test +TEST_DB_HOST=127.0.0.1 +TEST_DB_USER=root +TEST_DB_PASSWORD= +TEST_WP_TABLE_PREFIX=wp_ +TEST_SITE_ADMIN_EMAIL=admin@wp.test \ No newline at end of file diff --git a/.gitignore b/.gitignore index a65b338c0..a5dc3d9c9 100644 --- a/.gitignore +++ b/.gitignore @@ -25,3 +25,5 @@ schema.graphql phpunit.xml docker-output composer.lock +c3.php +.logs/ \ No newline at end of file diff --git a/.log/access.log b/.log/access.log new file mode 100644 index 000000000..f09db93af --- /dev/null +++ b/.log/access.log @@ -0,0 +1,917 @@ +192.168.160.4 - - [23/Jul/2019:00:35:00 +0000] "GET /graphql HTTP/1.1" 404 9003 "-" "Go-http-client/1.1" +192.168.160.4 - - [23/Jul/2019:00:35:01 +0000] "GET /graphql HTTP/1.1" 404 9003 "-" "Go-http-client/1.1" +192.168.160.4 - - [23/Jul/2019:00:35:02 +0000] "GET /graphql HTTP/1.1" 404 9003 "-" "Go-http-client/1.1" +192.168.160.4 - - [23/Jul/2019:00:35:03 +0000] "GET /graphql HTTP/1.1" 404 9003 "-" "Go-http-client/1.1" +192.168.160.4 - - [23/Jul/2019:00:35:04 +0000] "GET /graphql HTTP/1.1" 404 9003 "-" "Go-http-client/1.1" +192.168.160.4 - - [23/Jul/2019:00:35:05 +0000] "GET /graphql HTTP/1.1" 404 9003 "-" "Go-http-client/1.1" +192.168.160.4 - - [23/Jul/2019:00:35:06 +0000] "GET /graphql HTTP/1.1" 404 9003 "-" "Go-http-client/1.1" +192.168.160.4 - - [23/Jul/2019:00:35:07 +0000] "GET /graphql HTTP/1.1" 404 9003 "-" "Go-http-client/1.1" +192.168.160.4 - - [23/Jul/2019:00:35:09 +0000] "GET /graphql HTTP/1.1" 404 9003 "-" "Go-http-client/1.1" +192.168.160.4 - - [23/Jul/2019:00:35:10 +0000] "GET /graphql HTTP/1.1" 404 9003 "-" "Go-http-client/1.1" +192.168.160.4 - - [23/Jul/2019:00:35:11 +0000] "GET /graphql HTTP/1.1" 404 9003 "-" "Go-http-client/1.1" +192.168.160.4 - - [23/Jul/2019:00:35:12 +0000] "GET /graphql HTTP/1.1" 404 9003 "-" "Go-http-client/1.1" +192.168.160.4 - - [23/Jul/2019:00:35:13 +0000] "GET /graphql HTTP/1.1" 404 9003 "-" "Go-http-client/1.1" +192.168.160.4 - - [23/Jul/2019:00:35:14 +0000] "GET /graphql HTTP/1.1" 404 9003 "-" "Go-http-client/1.1" +192.168.160.4 - - [23/Jul/2019:00:35:15 +0000] "GET /graphql HTTP/1.1" 404 9003 "-" "Go-http-client/1.1" +192.168.160.4 - - [23/Jul/2019:00:35:16 +0000] "GET /graphql HTTP/1.1" 404 9003 "-" "Go-http-client/1.1" +192.168.160.4 - - [23/Jul/2019:00:35:17 +0000] "GET /graphql HTTP/1.1" 404 9003 "-" "Go-http-client/1.1" +192.168.160.4 - - [23/Jul/2019:00:35:18 +0000] "GET /graphql HTTP/1.1" 404 9003 "-" "Go-http-client/1.1" +192.168.160.4 - - [23/Jul/2019:00:35:19 +0000] "GET /graphql HTTP/1.1" 404 9003 "-" "Go-http-client/1.1" +192.168.160.4 - - [23/Jul/2019:00:35:20 +0000] "GET /graphql HTTP/1.1" 404 9003 "-" "Go-http-client/1.1" +192.168.160.4 - - [23/Jul/2019:00:35:21 +0000] "GET /graphql HTTP/1.1" 404 9003 "-" "Go-http-client/1.1" +192.168.160.4 - - [23/Jul/2019:00:35:22 +0000] "GET /graphql HTTP/1.1" 404 9003 "-" "Go-http-client/1.1" +192.168.160.4 - - [23/Jul/2019:00:35:23 +0000] "GET /graphql HTTP/1.1" 404 9003 "-" "Go-http-client/1.1" +192.168.160.4 - - [23/Jul/2019:00:35:24 +0000] "GET /graphql HTTP/1.1" 404 9003 "-" "Go-http-client/1.1" +192.168.160.4 - - [23/Jul/2019:00:35:25 +0000] "GET /graphql HTTP/1.1" 404 9003 "-" "Go-http-client/1.1" +192.168.160.4 - - [23/Jul/2019:00:35:26 +0000] "GET /graphql HTTP/1.1" 404 9003 "-" "Go-http-client/1.1" +192.168.160.4 - - [23/Jul/2019:00:35:27 +0000] "GET /graphql HTTP/1.1" 404 9003 "-" "Go-http-client/1.1" +192.168.160.4 - - [23/Jul/2019:00:35:28 +0000] "GET /graphql HTTP/1.1" 404 9003 "-" "Go-http-client/1.1" +192.168.160.4 - - [23/Jul/2019:00:35:29 +0000] "GET /graphql HTTP/1.1" 404 9003 "-" "Go-http-client/1.1" +192.168.160.4 - - [23/Jul/2019:00:35:30 +0000] "GET /graphql HTTP/1.1" 404 9003 "-" "Go-http-client/1.1" +192.168.160.4 - - [23/Jul/2019:00:35:32 +0000] "GET /graphql HTTP/1.1" 404 9003 "-" "Go-http-client/1.1" +192.168.160.4 - - [23/Jul/2019:00:35:33 +0000] "GET /graphql HTTP/1.1" 404 9003 "-" "Go-http-client/1.1" +192.168.160.4 - - [23/Jul/2019:00:35:34 +0000] "GET /graphql HTTP/1.1" 404 9003 "-" "Go-http-client/1.1" +192.168.160.4 - - [23/Jul/2019:00:35:35 +0000] "GET /graphql HTTP/1.1" 404 9003 "-" "Go-http-client/1.1" +192.168.160.4 - - [23/Jul/2019:00:35:36 +0000] "GET /graphql HTTP/1.1" 404 9003 "-" "Go-http-client/1.1" +192.168.160.4 - - [23/Jul/2019:00:35:37 +0000] "GET /graphql HTTP/1.1" 404 9003 "-" "Go-http-client/1.1" +192.168.160.4 - - [23/Jul/2019:00:35:38 +0000] "GET /graphql HTTP/1.1" 404 9003 "-" "Go-http-client/1.1" +192.168.160.4 - - [23/Jul/2019:00:35:39 +0000] "GET /graphql HTTP/1.1" 404 9003 "-" "Go-http-client/1.1" +192.168.160.4 - - [23/Jul/2019:00:35:40 +0000] "GET /graphql HTTP/1.1" 404 9003 "-" "Go-http-client/1.1" +192.168.160.4 - - [23/Jul/2019:00:35:41 +0000] "GET /graphql HTTP/1.1" 404 9003 "-" "Go-http-client/1.1" +192.168.160.4 - - [23/Jul/2019:00:35:42 +0000] "GET /graphql HTTP/1.1" 404 9003 "-" "Go-http-client/1.1" +192.168.160.4 - - [23/Jul/2019:00:35:43 +0000] "GET /graphql HTTP/1.1" 404 9003 "-" "Go-http-client/1.1" +192.168.160.4 - - [23/Jul/2019:00:35:44 +0000] "GET /graphql HTTP/1.1" 404 9003 "-" "Go-http-client/1.1" +192.168.160.4 - - [23/Jul/2019:00:35:45 +0000] "GET /graphql HTTP/1.1" 404 9003 "-" "Go-http-client/1.1" +192.168.160.4 - - [23/Jul/2019:00:35:46 +0000] "GET /graphql HTTP/1.1" 404 9003 "-" "Go-http-client/1.1" +192.168.160.4 - - [23/Jul/2019:00:35:47 +0000] "GET /graphql HTTP/1.1" 404 9003 "-" "Go-http-client/1.1" +192.168.160.4 - - [23/Jul/2019:00:35:48 +0000] "GET /graphql HTTP/1.1" 404 9003 "-" "Go-http-client/1.1" +192.168.160.4 - - [23/Jul/2019:00:35:49 +0000] "GET /graphql HTTP/1.1" 404 9003 "-" "Go-http-client/1.1" +192.168.160.4 - - [23/Jul/2019:00:35:50 +0000] "GET /graphql HTTP/1.1" 404 9003 "-" "Go-http-client/1.1" +192.168.160.4 - - [23/Jul/2019:00:35:51 +0000] "GET /graphql HTTP/1.1" 404 9003 "-" "Go-http-client/1.1" +192.168.160.4 - - [23/Jul/2019:00:35:52 +0000] "GET /graphql HTTP/1.1" 404 9003 "-" "Go-http-client/1.1" +192.168.160.4 - - [23/Jul/2019:00:35:53 +0000] "GET /graphql HTTP/1.1" 404 9003 "-" "Go-http-client/1.1" +192.168.160.4 - - [23/Jul/2019:00:35:54 +0000] "GET /graphql HTTP/1.1" 404 9003 "-" "Go-http-client/1.1" +192.168.160.4 - - [23/Jul/2019:00:35:55 +0000] "GET /graphql HTTP/1.1" 404 9003 "-" "Go-http-client/1.1" +192.168.160.4 - - [23/Jul/2019:00:35:57 +0000] "GET /graphql HTTP/1.1" 404 9003 "-" "Go-http-client/1.1" +192.168.160.4 - - [23/Jul/2019:00:35:58 +0000] "GET /graphql HTTP/1.1" 404 9003 "-" "Go-http-client/1.1" +192.168.160.4 - - [23/Jul/2019:00:36:00 +0000] "GET /graphql HTTP/1.1" 404 9003 "-" "Go-http-client/1.1" +192.168.160.3 - - [23/Jul/2019:00:35:58 +0000] "POST /wp-cron.php?doing_wp_cron=1563842158.1035120487213134765625 HTTP/1.1" 200 192 "http://wordpress/wp-cron.php?doing_wp_cron=1563842158.1035120487213134765625" "WordPress/5.2.2; http://wordpress" +192.168.160.4 - - [23/Jul/2019:00:36:01 +0000] "GET /graphql HTTP/1.1" 404 9003 "-" "Go-http-client/1.1" +192.168.160.4 - - [23/Jul/2019:00:36:02 +0000] "GET /graphql HTTP/1.1" 404 9003 "-" "Go-http-client/1.1" +192.168.160.4 - - [23/Jul/2019:00:36:03 +0000] "GET /graphql HTTP/1.1" 404 9003 "-" "Go-http-client/1.1" +192.168.160.4 - - [23/Jul/2019:00:36:04 +0000] "GET /graphql HTTP/1.1" 404 9003 "-" "Go-http-client/1.1" +192.168.160.4 - - [23/Jul/2019:00:36:05 +0000] "GET /graphql HTTP/1.1" 404 9003 "-" "Go-http-client/1.1" +192.168.160.4 - - [23/Jul/2019:00:36:06 +0000] "GET /graphql HTTP/1.1" 404 9003 "-" "Go-http-client/1.1" +192.168.160.4 - - [23/Jul/2019:00:36:07 +0000] "GET /graphql HTTP/1.1" 404 9003 "-" "Go-http-client/1.1" +192.168.160.4 - - [23/Jul/2019:00:36:08 +0000] "GET /graphql HTTP/1.1" 404 9003 "-" "Go-http-client/1.1" +192.168.160.4 - - [23/Jul/2019:00:36:09 +0000] "GET /graphql HTTP/1.1" 404 9003 "-" "Go-http-client/1.1" +192.168.160.4 - - [23/Jul/2019:00:36:10 +0000] "GET /graphql HTTP/1.1" 404 9003 "-" "Go-http-client/1.1" +192.168.160.4 - - [23/Jul/2019:00:36:11 +0000] "GET /graphql HTTP/1.1" 404 9003 "-" "Go-http-client/1.1" +192.168.160.4 - - [23/Jul/2019:00:36:12 +0000] "GET /graphql HTTP/1.1" 404 9003 "-" "Go-http-client/1.1" +192.168.160.4 - - [23/Jul/2019:00:36:13 +0000] "GET /graphql HTTP/1.1" 404 9003 "-" "Go-http-client/1.1" +192.168.160.4 - - [23/Jul/2019:00:36:14 +0000] "GET /graphql HTTP/1.1" 404 9003 "-" "Go-http-client/1.1" +192.168.160.4 - - [23/Jul/2019:00:36:15 +0000] "GET /graphql HTTP/1.1" 404 9003 "-" "Go-http-client/1.1" +192.168.160.4 - - [23/Jul/2019:00:36:16 +0000] "GET /graphql HTTP/1.1" 404 9003 "-" "Go-http-client/1.1" +192.168.160.4 - - [23/Jul/2019:00:36:17 +0000] "GET /graphql HTTP/1.1" 404 9003 "-" "Go-http-client/1.1" +192.168.160.4 - - [23/Jul/2019:00:36:19 +0000] "GET /graphql HTTP/1.1" 404 9003 "-" "Go-http-client/1.1" +192.168.160.4 - - [23/Jul/2019:00:36:20 +0000] "GET /graphql HTTP/1.1" 404 9003 "-" "Go-http-client/1.1" +192.168.160.4 - - [23/Jul/2019:00:36:21 +0000] "GET /graphql HTTP/1.1" 404 9003 "-" "Go-http-client/1.1" +192.168.160.4 - - [23/Jul/2019:00:36:22 +0000] "GET /graphql HTTP/1.1" 404 9003 "-" "Go-http-client/1.1" +192.168.160.4 - - [23/Jul/2019:00:36:23 +0000] "GET /graphql HTTP/1.1" 404 9003 "-" "Go-http-client/1.1" +192.168.160.4 - - [23/Jul/2019:00:36:24 +0000] "GET /graphql HTTP/1.1" 404 9003 "-" "Go-http-client/1.1" +192.168.160.4 - - [23/Jul/2019:00:36:25 +0000] "GET /graphql HTTP/1.1" 404 9003 "-" "Go-http-client/1.1" +192.168.160.4 - - [23/Jul/2019:00:36:26 +0000] "GET /graphql HTTP/1.1" 404 9003 "-" "Go-http-client/1.1" +192.168.160.4 - - [23/Jul/2019:00:36:27 +0000] "GET /graphql HTTP/1.1" 404 9003 "-" "Go-http-client/1.1" +192.168.160.4 - - [23/Jul/2019:00:36:28 +0000] "GET /graphql HTTP/1.1" 404 9003 "-" "Go-http-client/1.1" +192.168.160.4 - - [23/Jul/2019:00:36:29 +0000] "GET /graphql HTTP/1.1" 404 9003 "-" "Go-http-client/1.1" +192.168.160.4 - - [23/Jul/2019:00:36:30 +0000] "GET /graphql HTTP/1.1" 404 9003 "-" "Go-http-client/1.1" +192.168.160.4 - - [23/Jul/2019:00:36:31 +0000] "GET /graphql HTTP/1.1" 404 9003 "-" "Go-http-client/1.1" +192.168.160.4 - - [23/Jul/2019:00:36:32 +0000] "GET /graphql HTTP/1.1" 404 9003 "-" "Go-http-client/1.1" +192.168.160.4 - - [23/Jul/2019:00:36:33 +0000] "GET /graphql HTTP/1.1" 404 9003 "-" "Go-http-client/1.1" +192.168.160.4 - - [23/Jul/2019:00:36:34 +0000] "GET /graphql HTTP/1.1" 404 9003 "-" "Go-http-client/1.1" +192.168.160.4 - - [23/Jul/2019:00:36:35 +0000] "GET /graphql HTTP/1.1" 404 9003 "-" "Go-http-client/1.1" +192.168.160.4 - - [23/Jul/2019:00:36:36 +0000] "GET /graphql HTTP/1.1" 404 9003 "-" "Go-http-client/1.1" +192.168.160.4 - - [23/Jul/2019:00:36:37 +0000] "GET /graphql HTTP/1.1" 404 9003 "-" "Go-http-client/1.1" +192.168.160.4 - - [23/Jul/2019:00:36:38 +0000] "GET /graphql HTTP/1.1" 404 9003 "-" "Go-http-client/1.1" +192.168.160.4 - - [23/Jul/2019:00:36:39 +0000] "GET /graphql HTTP/1.1" 404 9003 "-" "Go-http-client/1.1" +192.168.160.4 - - [23/Jul/2019:00:36:40 +0000] "GET /graphql HTTP/1.1" 404 9003 "-" "Go-http-client/1.1" +192.168.160.4 - - [23/Jul/2019:00:36:41 +0000] "GET /graphql HTTP/1.1" 404 9003 "-" "Go-http-client/1.1" +192.168.160.4 - - [23/Jul/2019:00:36:42 +0000] "GET /graphql HTTP/1.1" 404 9003 "-" "Go-http-client/1.1" +192.168.160.4 - - [23/Jul/2019:00:36:44 +0000] "GET /graphql HTTP/1.1" 404 9003 "-" "Go-http-client/1.1" +192.168.160.4 - - [23/Jul/2019:00:36:45 +0000] "GET /graphql HTTP/1.1" 404 9003 "-" "Go-http-client/1.1" +192.168.160.4 - - [23/Jul/2019:00:36:46 +0000] "GET /graphql HTTP/1.1" 404 9003 "-" "Go-http-client/1.1" +192.168.160.4 - - [23/Jul/2019:00:36:47 +0000] "GET /graphql HTTP/1.1" 404 9003 "-" "Go-http-client/1.1" +192.168.160.4 - - [23/Jul/2019:00:36:48 +0000] "GET /graphql HTTP/1.1" 404 9003 "-" "Go-http-client/1.1" +192.168.160.4 - - [23/Jul/2019:00:36:49 +0000] "GET /graphql HTTP/1.1" 404 9003 "-" "Go-http-client/1.1" +192.168.160.4 - - [23/Jul/2019:00:36:50 +0000] "GET /graphql HTTP/1.1" 404 9003 "-" "Go-http-client/1.1" +192.168.160.4 - - [23/Jul/2019:00:36:51 +0000] "GET /graphql HTTP/1.1" 404 9003 "-" "Go-http-client/1.1" +192.168.160.4 - - [23/Jul/2019:00:36:52 +0000] "GET /graphql HTTP/1.1" 404 9003 "-" "Go-http-client/1.1" +192.168.160.4 - - [23/Jul/2019:00:36:53 +0000] "GET /graphql HTTP/1.1" 404 9003 "-" "Go-http-client/1.1" +192.168.160.4 - - [23/Jul/2019:00:36:54 +0000] "GET /graphql HTTP/1.1" 404 9003 "-" "Go-http-client/1.1" +192.168.160.4 - - [23/Jul/2019:00:36:55 +0000] "GET /graphql HTTP/1.1" 404 9003 "-" "Go-http-client/1.1" +192.168.160.4 - - [23/Jul/2019:00:36:56 +0000] "GET /graphql HTTP/1.1" 404 9003 "-" "Go-http-client/1.1" +192.168.160.4 - - [23/Jul/2019:00:36:57 +0000] "GET /graphql HTTP/1.1" 404 9003 "-" "Go-http-client/1.1" +192.168.160.4 - - [23/Jul/2019:00:36:58 +0000] "GET /graphql HTTP/1.1" 404 9003 "-" "Go-http-client/1.1" +192.168.160.4 - - [23/Jul/2019:00:36:59 +0000] "GET /graphql HTTP/1.1" 404 9003 "-" "Go-http-client/1.1" +192.168.160.4 - - [23/Jul/2019:00:37:00 +0000] "GET /graphql HTTP/1.1" 404 9003 "-" "Go-http-client/1.1" +192.168.160.4 - - [23/Jul/2019:00:37:01 +0000] "GET /graphql HTTP/1.1" 404 9003 "-" "Go-http-client/1.1" +192.168.160.4 - - [23/Jul/2019:00:37:02 +0000] "GET /graphql HTTP/1.1" 404 9003 "-" "Go-http-client/1.1" +192.168.160.4 - - [23/Jul/2019:00:37:03 +0000] "GET /graphql HTTP/1.1" 404 9003 "-" "Go-http-client/1.1" +192.168.160.4 - - [23/Jul/2019:00:37:04 +0000] "GET /graphql HTTP/1.1" 404 9003 "-" "Go-http-client/1.1" +192.168.160.4 - - [23/Jul/2019:00:37:05 +0000] "GET /graphql HTTP/1.1" 404 9003 "-" "Go-http-client/1.1" +127.0.0.1 - - [23/Jul/2019:00:37:07 +0000] "OPTIONS * HTTP/1.0" 200 126 "-" "Apache/2.4.38 (Debian) PHP/7.2.20 (internal dummy connection)" +127.0.0.1 - - [23/Jul/2019:00:37:08 +0000] "OPTIONS * HTTP/1.0" 200 126 "-" "Apache/2.4.38 (Debian) PHP/7.2.20 (internal dummy connection)" +127.0.0.1 - - [23/Jul/2019:00:37:09 +0000] "OPTIONS * HTTP/1.0" 200 126 "-" "Apache/2.4.38 (Debian) PHP/7.2.20 (internal dummy connection)" +192.168.160.4 - - [23/Jul/2019:00:37:34 +0000] "POST /graphql HTTP/1.1" 404 9003 "-" "Symfony BrowserKit" +192.168.192.4 - - [23/Jul/2019:00:41:30 +0000] "GET /graphql HTTP/1.1" 404 9003 "-" "Go-http-client/1.1" +192.168.192.4 - - [23/Jul/2019:00:41:32 +0000] "GET /graphql HTTP/1.1" 404 9003 "-" "Go-http-client/1.1" +192.168.192.4 - - [23/Jul/2019:00:41:33 +0000] "GET /graphql HTTP/1.1" 404 9003 "-" "Go-http-client/1.1" +192.168.192.4 - - [23/Jul/2019:00:41:34 +0000] "GET /graphql HTTP/1.1" 404 9003 "-" "Go-http-client/1.1" +192.168.192.4 - - [23/Jul/2019:00:41:35 +0000] "GET /graphql HTTP/1.1" 404 9003 "-" "Go-http-client/1.1" +192.168.192.4 - - [23/Jul/2019:00:41:36 +0000] "GET /graphql HTTP/1.1" 404 9003 "-" "Go-http-client/1.1" +192.168.192.4 - - [23/Jul/2019:00:41:37 +0000] "GET /graphql HTTP/1.1" 404 9003 "-" "Go-http-client/1.1" +192.168.192.4 - - [23/Jul/2019:00:41:38 +0000] "GET /graphql HTTP/1.1" 404 9003 "-" "Go-http-client/1.1" +192.168.192.4 - - [23/Jul/2019:00:41:39 +0000] "GET /graphql HTTP/1.1" 404 9003 "-" "Go-http-client/1.1" +192.168.192.4 - - [23/Jul/2019:00:41:40 +0000] "GET /graphql HTTP/1.1" 404 9003 "-" "Go-http-client/1.1" +192.168.192.4 - - [23/Jul/2019:00:41:41 +0000] "GET /graphql HTTP/1.1" 404 9003 "-" "Go-http-client/1.1" +192.168.192.4 - - [23/Jul/2019:00:41:43 +0000] "GET /graphql HTTP/1.1" 404 9003 "-" "Go-http-client/1.1" +192.168.192.4 - - [23/Jul/2019:00:41:44 +0000] "GET /graphql HTTP/1.1" 404 9003 "-" "Go-http-client/1.1" +192.168.192.4 - - [23/Jul/2019:00:41:45 +0000] "GET /graphql HTTP/1.1" 404 9003 "-" "Go-http-client/1.1" +192.168.192.4 - - [23/Jul/2019:00:41:46 +0000] "GET /graphql HTTP/1.1" 404 9003 "-" "Go-http-client/1.1" +192.168.192.4 - - [23/Jul/2019:00:41:47 +0000] "GET /graphql HTTP/1.1" 404 9003 "-" "Go-http-client/1.1" +192.168.192.4 - - [23/Jul/2019:00:41:48 +0000] "GET /graphql HTTP/1.1" 404 9003 "-" "Go-http-client/1.1" +192.168.192.4 - - [23/Jul/2019:00:41:49 +0000] "GET /graphql HTTP/1.1" 404 9003 "-" "Go-http-client/1.1" +192.168.192.4 - - [23/Jul/2019:00:41:50 +0000] "GET /graphql HTTP/1.1" 404 9003 "-" "Go-http-client/1.1" +192.168.192.4 - - [23/Jul/2019:00:41:51 +0000] "GET /graphql HTTP/1.1" 404 9003 "-" "Go-http-client/1.1" +192.168.192.4 - - [23/Jul/2019:00:41:52 +0000] "GET /graphql HTTP/1.1" 404 9003 "-" "Go-http-client/1.1" +192.168.192.4 - - [23/Jul/2019:00:41:53 +0000] "GET /graphql HTTP/1.1" 404 9003 "-" "Go-http-client/1.1" +192.168.192.4 - - [23/Jul/2019:00:41:54 +0000] "GET /graphql HTTP/1.1" 404 9003 "-" "Go-http-client/1.1" +192.168.192.4 - - [23/Jul/2019:00:41:55 +0000] "GET /graphql HTTP/1.1" 404 9003 "-" "Go-http-client/1.1" +192.168.192.4 - - [23/Jul/2019:00:41:56 +0000] "GET /graphql HTTP/1.1" 404 9003 "-" "Go-http-client/1.1" +192.168.192.4 - - [23/Jul/2019:00:41:57 +0000] "GET /graphql HTTP/1.1" 404 9003 "-" "Go-http-client/1.1" +192.168.192.4 - - [23/Jul/2019:00:41:58 +0000] "GET /graphql HTTP/1.1" 404 9003 "-" "Go-http-client/1.1" +192.168.192.4 - - [23/Jul/2019:00:41:59 +0000] "GET /graphql HTTP/1.1" 404 9003 "-" "Go-http-client/1.1" +192.168.192.4 - - [23/Jul/2019:00:42:00 +0000] "GET /graphql HTTP/1.1" 404 9003 "-" "Go-http-client/1.1" +192.168.192.4 - - [23/Jul/2019:00:42:01 +0000] "GET /graphql HTTP/1.1" 404 9003 "-" "Go-http-client/1.1" +192.168.192.4 - - [23/Jul/2019:00:42:02 +0000] "GET /graphql HTTP/1.1" 404 9003 "-" "Go-http-client/1.1" +192.168.192.4 - - [23/Jul/2019:00:42:03 +0000] "GET /graphql HTTP/1.1" 404 9003 "-" "Go-http-client/1.1" +192.168.192.4 - - [23/Jul/2019:00:42:04 +0000] "GET /graphql HTTP/1.1" 404 9003 "-" "Go-http-client/1.1" +192.168.192.4 - - [23/Jul/2019:00:42:05 +0000] "GET /graphql HTTP/1.1" 404 9003 "-" "Go-http-client/1.1" +192.168.192.4 - - [23/Jul/2019:00:42:07 +0000] "GET /graphql HTTP/1.1" 404 9003 "-" "Go-http-client/1.1" +192.168.192.4 - - [23/Jul/2019:00:42:08 +0000] "GET /graphql HTTP/1.1" 404 9003 "-" "Go-http-client/1.1" +192.168.192.4 - - [23/Jul/2019:00:42:09 +0000] "GET /graphql HTTP/1.1" 404 9003 "-" "Go-http-client/1.1" +192.168.192.4 - - [23/Jul/2019:00:42:10 +0000] "GET /graphql HTTP/1.1" 404 9003 "-" "Go-http-client/1.1" +192.168.192.4 - - [23/Jul/2019:00:42:11 +0000] "GET /graphql HTTP/1.1" 404 9003 "-" "Go-http-client/1.1" +192.168.192.4 - - [23/Jul/2019:00:42:12 +0000] "GET /graphql HTTP/1.1" 404 9003 "-" "Go-http-client/1.1" +192.168.192.4 - - [23/Jul/2019:00:42:13 +0000] "GET /graphql HTTP/1.1" 404 9003 "-" "Go-http-client/1.1" +192.168.192.4 - - [23/Jul/2019:00:42:14 +0000] "GET /graphql HTTP/1.1" 404 9003 "-" "Go-http-client/1.1" +192.168.192.4 - - [23/Jul/2019:00:42:15 +0000] "GET /graphql HTTP/1.1" 404 9003 "-" "Go-http-client/1.1" +192.168.192.4 - - [23/Jul/2019:00:42:16 +0000] "GET /graphql HTTP/1.1" 404 9003 "-" "Go-http-client/1.1" +192.168.192.4 - - [23/Jul/2019:00:42:17 +0000] "GET /graphql HTTP/1.1" 404 9003 "-" "Go-http-client/1.1" +192.168.192.4 - - [23/Jul/2019:00:42:18 +0000] "GET /graphql HTTP/1.1" 404 9003 "-" "Go-http-client/1.1" +192.168.192.4 - - [23/Jul/2019:00:42:19 +0000] "GET /graphql HTTP/1.1" 404 9003 "-" "Go-http-client/1.1" +192.168.192.4 - - [23/Jul/2019:00:42:20 +0000] "GET /graphql HTTP/1.1" 404 9003 "-" "Go-http-client/1.1" +192.168.192.4 - - [23/Jul/2019:00:42:21 +0000] "GET /graphql HTTP/1.1" 404 9003 "-" "Go-http-client/1.1" +192.168.192.4 - - [23/Jul/2019:00:42:22 +0000] "GET /graphql HTTP/1.1" 404 9003 "-" "Go-http-client/1.1" +192.168.192.4 - - [23/Jul/2019:00:42:23 +0000] "GET /graphql HTTP/1.1" 404 9003 "-" "Go-http-client/1.1" +192.168.192.4 - - [23/Jul/2019:00:42:24 +0000] "GET /graphql HTTP/1.1" 404 9003 "-" "Go-http-client/1.1" +192.168.192.4 - - [23/Jul/2019:00:42:25 +0000] "GET /graphql HTTP/1.1" 404 9003 "-" "Go-http-client/1.1" +192.168.192.4 - - [23/Jul/2019:00:42:26 +0000] "GET /graphql HTTP/1.1" 404 9003 "-" "Go-http-client/1.1" +192.168.192.4 - - [23/Jul/2019:00:42:27 +0000] "GET /graphql HTTP/1.1" 404 9003 "-" "Go-http-client/1.1" +192.168.192.4 - - [23/Jul/2019:00:42:28 +0000] "GET /graphql HTTP/1.1" 404 9003 "-" "Go-http-client/1.1" +192.168.192.4 - - [23/Jul/2019:00:42:31 +0000] "GET /graphql HTTP/1.1" 404 9003 "-" "Go-http-client/1.1" +192.168.192.3 - - [23/Jul/2019:00:42:29 +0000] "POST /wp-cron.php?doing_wp_cron=1563842548.9784030914306640625000 HTTP/1.1" 200 192 "http://wordpress/wp-cron.php?doing_wp_cron=1563842548.9784030914306640625000" "WordPress/5.2.2; http://wordpress" +192.168.192.4 - - [23/Jul/2019:00:42:32 +0000] "GET /graphql HTTP/1.1" 404 9003 "-" "Go-http-client/1.1" +192.168.192.4 - - [23/Jul/2019:00:42:33 +0000] "GET /graphql HTTP/1.1" 404 9003 "-" "Go-http-client/1.1" +192.168.192.4 - - [23/Jul/2019:00:42:34 +0000] "GET /graphql HTTP/1.1" 404 9003 "-" "Go-http-client/1.1" +192.168.192.4 - - [23/Jul/2019:00:42:35 +0000] "GET /graphql HTTP/1.1" 404 9003 "-" "Go-http-client/1.1" +192.168.192.4 - - [23/Jul/2019:00:42:36 +0000] "GET /graphql HTTP/1.1" 404 9003 "-" "Go-http-client/1.1" +192.168.192.4 - - [23/Jul/2019:00:42:37 +0000] "GET /graphql HTTP/1.1" 404 9003 "-" "Go-http-client/1.1" +192.168.192.4 - - [23/Jul/2019:00:42:38 +0000] "GET /graphql HTTP/1.1" 404 9003 "-" "Go-http-client/1.1" +192.168.192.4 - - [23/Jul/2019:00:42:39 +0000] "GET /graphql HTTP/1.1" 404 9003 "-" "Go-http-client/1.1" +192.168.192.4 - - [23/Jul/2019:00:42:40 +0000] "GET /graphql HTTP/1.1" 404 9003 "-" "Go-http-client/1.1" +192.168.192.4 - - [23/Jul/2019:00:42:41 +0000] "GET /graphql HTTP/1.1" 404 9003 "-" "Go-http-client/1.1" +192.168.192.4 - - [23/Jul/2019:00:42:42 +0000] "GET /graphql HTTP/1.1" 404 9003 "-" "Go-http-client/1.1" +192.168.192.4 - - [23/Jul/2019:00:42:43 +0000] "GET /graphql HTTP/1.1" 404 9003 "-" "Go-http-client/1.1" +192.168.192.4 - - [23/Jul/2019:00:42:44 +0000] "GET /graphql HTTP/1.1" 404 9003 "-" "Go-http-client/1.1" +192.168.192.4 - - [23/Jul/2019:00:42:45 +0000] "GET /graphql HTTP/1.1" 404 9003 "-" "Go-http-client/1.1" +192.168.192.4 - - [23/Jul/2019:00:42:46 +0000] "GET /graphql HTTP/1.1" 404 9003 "-" "Go-http-client/1.1" +192.168.192.4 - - [23/Jul/2019:00:42:47 +0000] "GET /graphql HTTP/1.1" 404 9003 "-" "Go-http-client/1.1" +192.168.192.4 - - [23/Jul/2019:00:42:48 +0000] "GET /graphql HTTP/1.1" 404 9003 "-" "Go-http-client/1.1" +192.168.192.4 - - [23/Jul/2019:00:42:49 +0000] "GET /graphql HTTP/1.1" 404 9003 "-" "Go-http-client/1.1" +192.168.192.4 - - [23/Jul/2019:00:42:50 +0000] "GET /graphql HTTP/1.1" 404 9003 "-" "Go-http-client/1.1" +192.168.192.4 - - [23/Jul/2019:00:42:51 +0000] "GET /graphql HTTP/1.1" 404 9003 "-" "Go-http-client/1.1" +192.168.192.4 - - [23/Jul/2019:00:42:52 +0000] "GET /graphql HTTP/1.1" 404 9003 "-" "Go-http-client/1.1" +192.168.192.4 - - [23/Jul/2019:00:42:54 +0000] "GET /graphql HTTP/1.1" 404 9003 "-" "Go-http-client/1.1" +192.168.192.4 - - [23/Jul/2019:00:42:55 +0000] "GET /graphql HTTP/1.1" 404 9003 "-" "Go-http-client/1.1" +192.168.192.4 - - [23/Jul/2019:00:42:56 +0000] "GET /graphql HTTP/1.1" 404 9003 "-" "Go-http-client/1.1" +192.168.192.4 - - [23/Jul/2019:00:42:57 +0000] "GET /graphql HTTP/1.1" 404 9003 "-" "Go-http-client/1.1" +192.168.192.4 - - [23/Jul/2019:00:42:58 +0000] "GET /graphql HTTP/1.1" 404 9003 "-" "Go-http-client/1.1" +192.168.192.4 - - [23/Jul/2019:00:42:59 +0000] "GET /graphql HTTP/1.1" 404 9003 "-" "Go-http-client/1.1" +192.168.192.4 - - [23/Jul/2019:00:43:00 +0000] "GET /graphql HTTP/1.1" 404 9003 "-" "Go-http-client/1.1" +192.168.192.4 - - [23/Jul/2019:00:43:01 +0000] "GET /graphql HTTP/1.1" 404 9003 "-" "Go-http-client/1.1" +192.168.192.4 - - [23/Jul/2019:00:43:02 +0000] "GET /graphql HTTP/1.1" 404 9003 "-" "Go-http-client/1.1" +192.168.192.4 - - [23/Jul/2019:00:43:03 +0000] "GET /graphql HTTP/1.1" 404 9003 "-" "Go-http-client/1.1" +192.168.192.4 - - [23/Jul/2019:00:43:04 +0000] "GET /graphql HTTP/1.1" 404 9003 "-" "Go-http-client/1.1" +192.168.192.4 - - [23/Jul/2019:00:43:05 +0000] "GET /graphql HTTP/1.1" 404 9003 "-" "Go-http-client/1.1" +192.168.192.4 - - [23/Jul/2019:00:43:06 +0000] "GET /graphql HTTP/1.1" 404 9003 "-" "Go-http-client/1.1" +192.168.192.4 - - [23/Jul/2019:00:43:07 +0000] "GET /graphql HTTP/1.1" 404 9003 "-" "Go-http-client/1.1" +192.168.192.4 - - [23/Jul/2019:00:43:08 +0000] "GET /graphql HTTP/1.1" 404 9003 "-" "Go-http-client/1.1" +192.168.192.4 - - [23/Jul/2019:00:43:09 +0000] "GET /graphql HTTP/1.1" 404 9003 "-" "Go-http-client/1.1" +192.168.192.4 - - [23/Jul/2019:00:43:10 +0000] "GET /graphql HTTP/1.1" 404 9003 "-" "Go-http-client/1.1" +192.168.192.4 - - [23/Jul/2019:00:43:11 +0000] "GET /graphql HTTP/1.1" 404 9003 "-" "Go-http-client/1.1" +192.168.192.4 - - [23/Jul/2019:00:43:12 +0000] "GET /graphql HTTP/1.1" 404 9003 "-" "Go-http-client/1.1" +192.168.192.4 - - [23/Jul/2019:00:43:13 +0000] "GET /graphql HTTP/1.1" 404 9003 "-" "Go-http-client/1.1" +192.168.192.4 - - [23/Jul/2019:00:43:14 +0000] "GET /graphql HTTP/1.1" 404 9003 "-" "Go-http-client/1.1" +192.168.192.4 - - [23/Jul/2019:00:43:15 +0000] "GET /graphql HTTP/1.1" 404 9003 "-" "Go-http-client/1.1" +192.168.192.4 - - [23/Jul/2019:00:43:16 +0000] "GET /graphql HTTP/1.1" 404 9003 "-" "Go-http-client/1.1" +192.168.192.4 - - [23/Jul/2019:00:43:17 +0000] "GET /graphql HTTP/1.1" 404 9003 "-" "Go-http-client/1.1" +192.168.192.4 - - [23/Jul/2019:00:43:19 +0000] "GET /graphql HTTP/1.1" 404 9003 "-" "Go-http-client/1.1" +192.168.192.4 - - [23/Jul/2019:00:43:20 +0000] "GET /graphql HTTP/1.1" 404 9003 "-" "Go-http-client/1.1" +192.168.192.4 - - [23/Jul/2019:00:43:21 +0000] "GET /graphql HTTP/1.1" 404 9003 "-" "Go-http-client/1.1" +192.168.192.4 - - [23/Jul/2019:00:43:22 +0000] "GET /graphql HTTP/1.1" 404 9003 "-" "Go-http-client/1.1" +192.168.192.4 - - [23/Jul/2019:00:43:23 +0000] "GET /graphql HTTP/1.1" 404 9003 "-" "Go-http-client/1.1" +192.168.192.4 - - [23/Jul/2019:00:43:24 +0000] "GET /graphql HTTP/1.1" 404 9003 "-" "Go-http-client/1.1" +192.168.192.4 - - [23/Jul/2019:00:43:25 +0000] "GET /graphql HTTP/1.1" 404 9003 "-" "Go-http-client/1.1" +192.168.192.4 - - [23/Jul/2019:00:43:26 +0000] "GET /graphql HTTP/1.1" 404 9003 "-" "Go-http-client/1.1" +192.168.192.4 - - [23/Jul/2019:00:43:27 +0000] "GET /graphql HTTP/1.1" 404 9003 "-" "Go-http-client/1.1" +192.168.192.4 - - [23/Jul/2019:00:43:28 +0000] "GET /graphql HTTP/1.1" 404 9003 "-" "Go-http-client/1.1" +192.168.192.4 - - [23/Jul/2019:00:43:29 +0000] "GET /graphql HTTP/1.1" 404 9003 "-" "Go-http-client/1.1" +192.168.192.4 - - [23/Jul/2019:00:43:30 +0000] "GET /graphql HTTP/1.1" 404 9003 "-" "Go-http-client/1.1" +192.168.192.4 - - [23/Jul/2019:00:43:31 +0000] "GET /graphql HTTP/1.1" 404 9003 "-" "Go-http-client/1.1" +127.0.0.1 - - [23/Jul/2019:00:43:31 +0000] "OPTIONS * HTTP/1.0" 200 126 "-" "Apache/2.4.38 (Debian) PHP/7.2.20 (internal dummy connection)" +127.0.0.1 - - [23/Jul/2019:00:43:32 +0000] "OPTIONS * HTTP/1.0" 200 126 "-" "Apache/2.4.38 (Debian) PHP/7.2.20 (internal dummy connection)" +192.168.192.4 - - [23/Jul/2019:00:43:56 +0000] "POST /graphql HTTP/1.1" 404 9003 "-" "Symfony BrowserKit" +192.168.192.1 - - [23/Jul/2019:00:53:39 +0000] "GET / HTTP/1.1" 301 299 "-" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/75.0.3770.100 Safari/537.36" +192.168.192.3 - - [23/Jul/2019:00:53:40 +0000] "POST /wp-admin/admin-ajax.php?action=wp_1_wc_privacy_cleanup&nonce=42fc26538f HTTP/1.1" 200 492 "http://wordpress/wp-admin/admin-ajax.php?action=wp_1_wc_privacy_cleanup&nonce=42fc26538f" "WordPress/5.2.2; http://wordpress" +192.168.192.3 - - [23/Jul/2019:00:53:40 +0000] "POST /wp-cron.php?doing_wp_cron=1563843220.4602689743041992187500 HTTP/1.1" 200 192 "http://wordpress/wp-cron.php?doing_wp_cron=1563843220.4602689743041992187500" "WordPress/5.2.2; http://wordpress" +192.168.192.1 - - [23/Jul/2019:00:54:30 +0000] "-" 408 0 "-" "-" +192.168.240.4 - - [23/Jul/2019:00:58:11 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" +192.168.240.4 - - [23/Jul/2019:00:58:12 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" +192.168.240.4 - - [23/Jul/2019:00:58:13 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" +192.168.240.4 - - [23/Jul/2019:00:58:14 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" +192.168.240.4 - - [23/Jul/2019:00:58:15 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" +192.168.240.4 - - [23/Jul/2019:00:58:16 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" +192.168.240.4 - - [23/Jul/2019:00:58:17 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" +192.168.240.4 - - [23/Jul/2019:00:58:18 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" +192.168.240.4 - - [23/Jul/2019:00:58:19 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" +192.168.240.4 - - [23/Jul/2019:00:58:20 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" +192.168.240.4 - - [23/Jul/2019:00:58:21 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" +192.168.240.4 - - [23/Jul/2019:00:58:22 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" +192.168.240.4 - - [23/Jul/2019:00:58:23 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" +192.168.240.4 - - [23/Jul/2019:00:58:24 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" +192.168.240.4 - - [23/Jul/2019:00:58:25 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" +192.168.240.4 - - [23/Jul/2019:00:58:26 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" +192.168.240.4 - - [23/Jul/2019:00:58:27 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" +192.168.240.4 - - [23/Jul/2019:00:58:28 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" +192.168.240.4 - - [23/Jul/2019:00:58:29 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" +192.168.240.4 - - [23/Jul/2019:00:58:30 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" +192.168.240.4 - - [23/Jul/2019:00:58:31 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" +192.168.240.4 - - [23/Jul/2019:00:58:32 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" +192.168.240.4 - - [23/Jul/2019:00:58:33 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" +192.168.240.4 - - [23/Jul/2019:00:58:34 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" +192.168.240.4 - - [23/Jul/2019:00:58:35 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" +192.168.240.4 - - [23/Jul/2019:00:58:36 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" +192.168.240.4 - - [23/Jul/2019:00:58:37 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" +192.168.240.4 - - [23/Jul/2019:00:58:38 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" +192.168.240.4 - - [23/Jul/2019:00:58:39 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" +192.168.240.4 - - [23/Jul/2019:00:58:40 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" +192.168.240.4 - - [23/Jul/2019:00:58:41 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" +192.168.240.4 - - [23/Jul/2019:00:58:42 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" +192.168.240.4 - - [23/Jul/2019:00:58:43 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" +192.168.240.4 - - [23/Jul/2019:00:58:44 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" +192.168.240.4 - - [23/Jul/2019:00:58:45 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" +192.168.240.4 - - [23/Jul/2019:00:58:46 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" +192.168.240.4 - - [23/Jul/2019:00:58:47 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" +192.168.240.4 - - [23/Jul/2019:00:58:48 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" +192.168.240.4 - - [23/Jul/2019:00:58:49 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" +192.168.240.4 - - [23/Jul/2019:00:58:50 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" +192.168.240.4 - - [23/Jul/2019:00:58:51 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" +192.168.240.4 - - [23/Jul/2019:00:58:52 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" +192.168.240.4 - - [23/Jul/2019:00:58:53 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" +192.168.240.4 - - [23/Jul/2019:00:58:54 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" +192.168.240.4 - - [23/Jul/2019:00:58:55 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" +192.168.240.4 - - [23/Jul/2019:00:58:56 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" +192.168.240.4 - - [23/Jul/2019:00:58:57 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" +192.168.240.4 - - [23/Jul/2019:00:58:58 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" +192.168.240.4 - - [23/Jul/2019:00:58:59 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" +192.168.240.4 - - [23/Jul/2019:00:59:00 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" +192.168.240.4 - - [23/Jul/2019:00:59:01 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" +192.168.240.4 - - [23/Jul/2019:00:59:02 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" +192.168.240.4 - - [23/Jul/2019:00:59:03 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" +192.168.240.4 - - [23/Jul/2019:00:59:04 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" +192.168.240.4 - - [23/Jul/2019:00:59:05 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" +192.168.240.4 - - [23/Jul/2019:00:59:06 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" +192.168.240.4 - - [23/Jul/2019:00:59:07 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" +192.168.240.4 - - [23/Jul/2019:00:59:08 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" +192.168.240.4 - - [23/Jul/2019:00:59:09 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" +192.168.240.4 - - [23/Jul/2019:00:59:10 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" +192.168.240.4 - - [23/Jul/2019:00:59:11 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" +192.168.240.4 - - [23/Jul/2019:00:59:12 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" +192.168.240.4 - - [23/Jul/2019:00:59:13 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" +192.168.240.4 - - [23/Jul/2019:00:59:14 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" +192.168.240.4 - - [23/Jul/2019:00:59:15 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" +192.168.240.4 - - [23/Jul/2019:00:59:16 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" +192.168.240.4 - - [23/Jul/2019:00:59:17 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" +192.168.240.4 - - [23/Jul/2019:00:59:18 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" +192.168.240.4 - - [23/Jul/2019:00:59:19 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" +192.168.240.4 - - [23/Jul/2019:00:59:20 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" +192.168.240.4 - - [23/Jul/2019:00:59:21 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" +192.168.240.4 - - [23/Jul/2019:00:59:22 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" +192.168.240.4 - - [23/Jul/2019:00:59:23 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" +192.168.240.4 - - [23/Jul/2019:00:59:24 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" +192.168.240.4 - - [23/Jul/2019:00:59:25 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" +192.168.240.4 - - [23/Jul/2019:00:59:26 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" +192.168.240.4 - - [23/Jul/2019:00:59:27 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" +192.168.240.4 - - [23/Jul/2019:00:59:28 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" +192.168.240.4 - - [23/Jul/2019:00:59:29 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" +192.168.240.4 - - [23/Jul/2019:00:59:30 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" +192.168.240.4 - - [23/Jul/2019:00:59:31 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" +192.168.240.4 - - [23/Jul/2019:00:59:32 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" +192.168.240.4 - - [23/Jul/2019:00:59:33 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" +192.168.240.4 - - [23/Jul/2019:00:59:34 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" +192.168.240.4 - - [23/Jul/2019:00:59:35 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" +192.168.240.4 - - [23/Jul/2019:00:59:36 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" +192.168.240.4 - - [23/Jul/2019:00:59:37 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" +192.168.240.4 - - [23/Jul/2019:00:59:38 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" +192.168.240.4 - - [23/Jul/2019:00:59:39 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" +192.168.240.4 - - [23/Jul/2019:00:59:40 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" +192.168.240.4 - - [23/Jul/2019:00:59:41 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" +192.168.240.4 - - [23/Jul/2019:00:59:42 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" +192.168.240.4 - - [23/Jul/2019:00:59:43 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" +192.168.240.4 - - [23/Jul/2019:00:59:44 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" +192.168.240.4 - - [23/Jul/2019:00:59:45 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" +192.168.240.4 - - [23/Jul/2019:00:59:46 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" +192.168.240.4 - - [23/Jul/2019:00:59:47 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" +192.168.240.4 - - [23/Jul/2019:00:59:48 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" +192.168.240.4 - - [23/Jul/2019:00:59:49 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" +192.168.240.4 - - [23/Jul/2019:00:59:50 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" +192.168.240.4 - - [23/Jul/2019:00:59:51 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" +192.168.240.4 - - [23/Jul/2019:00:59:52 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" +192.168.240.4 - - [23/Jul/2019:00:59:53 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" +192.168.240.4 - - [23/Jul/2019:00:59:54 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" +192.168.240.4 - - [23/Jul/2019:00:59:55 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" +192.168.240.4 - - [23/Jul/2019:00:59:56 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" +192.168.240.4 - - [23/Jul/2019:00:59:57 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" +192.168.240.4 - - [23/Jul/2019:00:59:58 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" +192.168.240.4 - - [23/Jul/2019:00:59:59 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" +192.168.240.4 - - [23/Jul/2019:01:00:00 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" +192.168.240.4 - - [23/Jul/2019:01:00:01 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" +192.168.240.4 - - [23/Jul/2019:01:00:02 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" +192.168.240.4 - - [23/Jul/2019:01:00:03 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" +192.168.240.4 - - [23/Jul/2019:01:00:04 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" +192.168.240.4 - - [23/Jul/2019:01:00:05 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" +192.168.240.4 - - [23/Jul/2019:01:00:06 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" +192.168.240.4 - - [23/Jul/2019:01:00:07 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" +192.168.240.4 - - [23/Jul/2019:01:00:08 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" +192.168.240.4 - - [23/Jul/2019:01:00:09 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" +192.168.240.4 - - [23/Jul/2019:01:00:10 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" +192.168.240.4 - - [23/Jul/2019:01:00:11 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" +192.168.240.4 - - [23/Jul/2019:01:00:12 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" +192.168.240.4 - - [23/Jul/2019:01:00:13 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" +192.168.240.4 - - [23/Jul/2019:01:00:14 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" +192.168.240.4 - - [23/Jul/2019:01:00:15 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" +127.0.0.1 - - [23/Jul/2019:01:00:16 +0000] "OPTIONS * HTTP/1.0" 200 126 "-" "Apache/2.4.38 (Debian) PHP/7.2.20 (internal dummy connection)" +127.0.0.1 - - [23/Jul/2019:01:00:17 +0000] "OPTIONS * HTTP/1.0" 200 126 "-" "Apache/2.4.38 (Debian) PHP/7.2.20 (internal dummy connection)" +192.168.240.4 - - [23/Jul/2019:01:00:41 +0000] "POST /graphql HTTP/1.1" 404 441 "-" "Symfony BrowserKit" +172.21.0.4 - - [23/Jul/2019:15:47:14 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" +172.21.0.4 - - [23/Jul/2019:15:47:15 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" +172.21.0.4 - - [23/Jul/2019:15:47:16 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" +172.21.0.4 - - [23/Jul/2019:15:47:17 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" +172.21.0.4 - - [23/Jul/2019:15:47:18 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" +172.21.0.4 - - [23/Jul/2019:15:47:19 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" +172.21.0.4 - - [23/Jul/2019:15:47:20 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" +172.21.0.4 - - [23/Jul/2019:15:47:21 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" +172.21.0.4 - - [23/Jul/2019:15:47:22 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" +172.21.0.4 - - [23/Jul/2019:15:47:23 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" +172.21.0.4 - - [23/Jul/2019:15:47:24 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" +172.21.0.4 - - [23/Jul/2019:15:47:25 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" +172.21.0.4 - - [23/Jul/2019:15:47:26 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" +172.21.0.4 - - [23/Jul/2019:15:47:27 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" +172.21.0.4 - - [23/Jul/2019:15:47:28 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" +172.21.0.4 - - [23/Jul/2019:15:47:29 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" +172.21.0.4 - - [23/Jul/2019:15:47:30 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" +172.21.0.4 - - [23/Jul/2019:15:47:31 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" +172.21.0.4 - - [23/Jul/2019:15:47:32 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" +172.21.0.4 - - [23/Jul/2019:15:47:33 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" +172.21.0.4 - - [23/Jul/2019:15:47:34 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" +172.21.0.4 - - [23/Jul/2019:15:47:35 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" +172.21.0.4 - - [23/Jul/2019:15:47:36 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" +172.21.0.4 - - [23/Jul/2019:15:47:37 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" +172.21.0.4 - - [23/Jul/2019:15:47:38 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" +172.21.0.4 - - [23/Jul/2019:15:47:39 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" +172.21.0.4 - - [23/Jul/2019:15:47:40 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" +172.21.0.4 - - [23/Jul/2019:15:47:41 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" +172.21.0.4 - - [23/Jul/2019:15:47:42 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" +172.21.0.4 - - [23/Jul/2019:15:47:43 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" +172.21.0.4 - - [23/Jul/2019:15:47:44 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" +172.21.0.4 - - [23/Jul/2019:15:47:45 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" +172.21.0.4 - - [23/Jul/2019:15:47:46 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" +172.21.0.4 - - [23/Jul/2019:15:47:47 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" +172.21.0.4 - - [23/Jul/2019:15:47:48 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" +172.21.0.4 - - [23/Jul/2019:15:47:49 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" +172.21.0.4 - - [23/Jul/2019:15:47:50 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" +172.21.0.4 - - [23/Jul/2019:15:47:51 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" +172.21.0.4 - - [23/Jul/2019:15:47:52 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" +172.21.0.4 - - [23/Jul/2019:15:47:53 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" +172.21.0.4 - - [23/Jul/2019:15:47:54 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" +172.21.0.4 - - [23/Jul/2019:15:47:55 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" +172.21.0.4 - - [23/Jul/2019:15:47:56 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" +172.21.0.4 - - [23/Jul/2019:15:47:57 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" +172.21.0.4 - - [23/Jul/2019:15:47:58 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" +172.21.0.4 - - [23/Jul/2019:15:47:59 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" +172.21.0.4 - - [23/Jul/2019:15:48:00 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" +172.21.0.4 - - [23/Jul/2019:15:48:01 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" +172.21.0.4 - - [23/Jul/2019:15:48:02 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" +172.21.0.4 - - [23/Jul/2019:15:48:03 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" +172.21.0.4 - - [23/Jul/2019:15:48:04 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" +172.21.0.4 - - [23/Jul/2019:15:48:05 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" +172.21.0.4 - - [23/Jul/2019:15:48:06 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" +172.21.0.4 - - [23/Jul/2019:15:48:07 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" +172.21.0.4 - - [23/Jul/2019:15:48:08 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" +172.21.0.4 - - [23/Jul/2019:15:48:09 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" +172.21.0.4 - - [23/Jul/2019:15:48:10 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" +172.21.0.4 - - [23/Jul/2019:15:48:11 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" +172.21.0.4 - - [23/Jul/2019:15:48:12 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" +172.21.0.4 - - [23/Jul/2019:15:48:13 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" +172.21.0.4 - - [23/Jul/2019:15:48:14 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" +172.21.0.4 - - [23/Jul/2019:15:48:15 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" +172.21.0.4 - - [23/Jul/2019:15:48:16 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" +172.21.0.4 - - [23/Jul/2019:15:48:17 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" +172.21.0.4 - - [23/Jul/2019:15:48:18 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" +172.21.0.4 - - [23/Jul/2019:15:48:19 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" +172.21.0.4 - - [23/Jul/2019:15:48:20 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" +172.21.0.4 - - [23/Jul/2019:15:48:21 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" +172.21.0.4 - - [23/Jul/2019:15:48:22 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" +172.21.0.4 - - [23/Jul/2019:15:48:23 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" +172.21.0.4 - - [23/Jul/2019:15:48:24 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" +172.21.0.4 - - [23/Jul/2019:15:48:25 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" +172.21.0.4 - - [23/Jul/2019:15:48:26 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" +172.21.0.4 - - [23/Jul/2019:15:48:27 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" +172.21.0.4 - - [23/Jul/2019:15:48:28 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" +172.21.0.4 - - [23/Jul/2019:15:48:29 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" +172.21.0.4 - - [23/Jul/2019:15:48:30 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" +172.21.0.4 - - [23/Jul/2019:15:48:31 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" +172.21.0.4 - - [23/Jul/2019:15:48:32 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" +172.21.0.4 - - [23/Jul/2019:15:48:33 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" +172.21.0.4 - - [23/Jul/2019:15:48:34 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" +172.21.0.4 - - [23/Jul/2019:15:48:35 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" +172.21.0.4 - - [23/Jul/2019:15:48:36 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" +172.21.0.4 - - [23/Jul/2019:15:48:37 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" +172.21.0.4 - - [23/Jul/2019:15:48:38 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" +172.21.0.4 - - [23/Jul/2019:15:48:39 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" +172.21.0.4 - - [23/Jul/2019:15:48:40 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" +172.21.0.4 - - [23/Jul/2019:15:48:41 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" +172.21.0.4 - - [23/Jul/2019:15:48:42 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" +172.21.0.4 - - [23/Jul/2019:15:48:43 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" +172.21.0.4 - - [23/Jul/2019:15:48:44 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" +172.21.0.4 - - [23/Jul/2019:15:48:45 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" +172.21.0.4 - - [23/Jul/2019:15:48:46 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" +172.21.0.4 - - [23/Jul/2019:15:48:47 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" +172.21.0.4 - - [23/Jul/2019:15:48:48 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" +172.21.0.4 - - [23/Jul/2019:15:48:49 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" +172.21.0.4 - - [23/Jul/2019:15:48:50 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" +172.21.0.4 - - [23/Jul/2019:15:48:51 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" +172.21.0.4 - - [23/Jul/2019:15:48:52 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" +172.21.0.4 - - [23/Jul/2019:15:48:53 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" +172.21.0.4 - - [23/Jul/2019:15:48:54 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" +172.21.0.4 - - [23/Jul/2019:15:48:55 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" +172.21.0.4 - - [23/Jul/2019:15:48:56 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" +172.21.0.4 - - [23/Jul/2019:15:48:57 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" +172.21.0.4 - - [23/Jul/2019:15:48:58 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" +172.21.0.4 - - [23/Jul/2019:15:48:59 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" +172.21.0.4 - - [23/Jul/2019:15:49:00 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" +172.21.0.4 - - [23/Jul/2019:15:49:01 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" +172.21.0.4 - - [23/Jul/2019:15:49:02 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" +172.21.0.4 - - [23/Jul/2019:15:49:03 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" +172.21.0.4 - - [23/Jul/2019:15:49:04 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" +172.21.0.4 - - [23/Jul/2019:15:49:05 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" +172.21.0.4 - - [23/Jul/2019:15:49:06 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" +172.21.0.4 - - [23/Jul/2019:15:49:07 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" +172.21.0.4 - - [23/Jul/2019:15:49:08 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" +172.21.0.4 - - [23/Jul/2019:15:49:09 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" +172.21.0.4 - - [23/Jul/2019:15:49:10 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" +172.21.0.4 - - [23/Jul/2019:15:49:11 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" +172.21.0.4 - - [23/Jul/2019:15:49:12 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" +172.21.0.4 - - [23/Jul/2019:15:49:13 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" +127.0.0.1 - - [23/Jul/2019:15:49:14 +0000] "OPTIONS * HTTP/1.0" 200 126 "-" "Apache/2.4.38 (Debian) PHP/7.2.20 (internal dummy connection)" +127.0.0.1 - - [23/Jul/2019:15:49:15 +0000] "OPTIONS * HTTP/1.0" 200 126 "-" "Apache/2.4.38 (Debian) PHP/7.2.20 (internal dummy connection)" +172.21.0.4 - - [23/Jul/2019:15:49:38 +0000] "POST /graphql HTTP/1.1" 404 441 "-" "Symfony BrowserKit" +172.25.0.4 - - [23/Jul/2019:15:59:03 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" +172.25.0.4 - - [23/Jul/2019:15:59:04 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" +172.25.0.4 - - [23/Jul/2019:15:59:05 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" +172.25.0.4 - - [23/Jul/2019:15:59:06 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" +172.25.0.4 - - [23/Jul/2019:15:59:07 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" +172.25.0.4 - - [23/Jul/2019:15:59:08 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" +172.25.0.4 - - [23/Jul/2019:15:59:09 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" +172.25.0.4 - - [23/Jul/2019:15:59:10 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" +172.25.0.4 - - [23/Jul/2019:15:59:11 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" +172.25.0.4 - - [23/Jul/2019:15:59:12 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" +172.25.0.4 - - [23/Jul/2019:15:59:13 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" +172.25.0.4 - - [23/Jul/2019:15:59:14 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" +172.25.0.4 - - [23/Jul/2019:15:59:15 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" +172.25.0.4 - - [23/Jul/2019:15:59:16 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" +172.25.0.4 - - [23/Jul/2019:15:59:17 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" +172.25.0.4 - - [23/Jul/2019:15:59:18 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" +172.25.0.4 - - [23/Jul/2019:15:59:19 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" +172.25.0.4 - - [23/Jul/2019:15:59:20 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" +172.25.0.4 - - [23/Jul/2019:15:59:21 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" +172.25.0.4 - - [23/Jul/2019:15:59:22 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" +172.25.0.4 - - [23/Jul/2019:15:59:23 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" +172.25.0.4 - - [23/Jul/2019:15:59:24 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" +172.25.0.4 - - [23/Jul/2019:15:59:25 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" +172.25.0.4 - - [23/Jul/2019:15:59:26 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" +172.25.0.4 - - [23/Jul/2019:15:59:27 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" +172.25.0.4 - - [23/Jul/2019:15:59:28 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" +172.25.0.4 - - [23/Jul/2019:15:59:29 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" +172.25.0.4 - - [23/Jul/2019:15:59:30 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" +172.25.0.4 - - [23/Jul/2019:15:59:31 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" +172.25.0.4 - - [23/Jul/2019:15:59:32 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" +172.25.0.4 - - [23/Jul/2019:15:59:33 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" +172.25.0.4 - - [23/Jul/2019:15:59:34 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" +172.25.0.4 - - [23/Jul/2019:15:59:35 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" +172.25.0.4 - - [23/Jul/2019:15:59:36 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" +172.25.0.4 - - [23/Jul/2019:15:59:37 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" +172.25.0.4 - - [23/Jul/2019:15:59:38 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" +172.25.0.4 - - [23/Jul/2019:15:59:39 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" +172.25.0.4 - - [23/Jul/2019:15:59:40 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" +172.25.0.4 - - [23/Jul/2019:15:59:41 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" +172.25.0.4 - - [23/Jul/2019:15:59:42 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" +172.25.0.4 - - [23/Jul/2019:15:59:43 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" +172.25.0.4 - - [23/Jul/2019:15:59:44 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" +172.25.0.4 - - [23/Jul/2019:15:59:45 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" +172.25.0.4 - - [23/Jul/2019:15:59:46 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" +172.25.0.4 - - [23/Jul/2019:15:59:47 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" +172.25.0.4 - - [23/Jul/2019:15:59:48 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" +172.25.0.4 - - [23/Jul/2019:15:59:49 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" +172.25.0.4 - - [23/Jul/2019:15:59:50 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" +172.25.0.4 - - [23/Jul/2019:15:59:51 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" +172.25.0.4 - - [23/Jul/2019:15:59:52 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" +172.25.0.4 - - [23/Jul/2019:15:59:53 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" +172.25.0.4 - - [23/Jul/2019:15:59:54 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" +172.25.0.4 - - [23/Jul/2019:15:59:55 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" +172.25.0.4 - - [23/Jul/2019:15:59:56 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" +172.25.0.4 - - [23/Jul/2019:15:59:57 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" +172.25.0.4 - - [23/Jul/2019:15:59:58 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" +172.25.0.4 - - [23/Jul/2019:15:59:59 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" +172.25.0.4 - - [23/Jul/2019:16:00:00 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" +172.25.0.4 - - [23/Jul/2019:16:00:01 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" +172.25.0.4 - - [23/Jul/2019:16:00:02 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" +172.25.0.4 - - [23/Jul/2019:16:00:03 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" +172.25.0.4 - - [23/Jul/2019:16:00:04 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" +172.25.0.4 - - [23/Jul/2019:16:00:05 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" +172.25.0.4 - - [23/Jul/2019:16:00:06 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" +172.25.0.4 - - [23/Jul/2019:16:00:07 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" +172.25.0.4 - - [23/Jul/2019:16:00:08 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" +172.25.0.4 - - [23/Jul/2019:16:00:09 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" +172.25.0.4 - - [23/Jul/2019:16:00:10 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" +172.25.0.4 - - [23/Jul/2019:16:00:11 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" +172.25.0.4 - - [23/Jul/2019:16:00:12 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" +172.25.0.4 - - [23/Jul/2019:16:00:13 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" +172.25.0.4 - - [23/Jul/2019:16:00:14 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" +172.25.0.4 - - [23/Jul/2019:16:00:15 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" +172.25.0.4 - - [23/Jul/2019:16:00:16 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" +172.25.0.4 - - [23/Jul/2019:16:00:17 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" +172.25.0.4 - - [23/Jul/2019:16:00:18 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" +172.25.0.4 - - [23/Jul/2019:16:00:19 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" +172.25.0.4 - - [23/Jul/2019:16:00:20 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" +172.25.0.4 - - [23/Jul/2019:16:00:21 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" +172.25.0.4 - - [23/Jul/2019:16:00:22 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" +172.25.0.4 - - [23/Jul/2019:16:00:23 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" +172.25.0.4 - - [23/Jul/2019:16:00:24 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" +172.25.0.4 - - [23/Jul/2019:16:00:25 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" +172.25.0.4 - - [23/Jul/2019:16:00:26 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" +172.25.0.4 - - [23/Jul/2019:16:00:27 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" +172.25.0.4 - - [23/Jul/2019:16:00:28 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" +172.25.0.4 - - [23/Jul/2019:16:00:29 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" +172.25.0.4 - - [23/Jul/2019:16:00:30 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" +172.25.0.4 - - [23/Jul/2019:16:00:31 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" +172.25.0.4 - - [23/Jul/2019:16:00:32 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" +172.25.0.4 - - [23/Jul/2019:16:00:33 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" +172.25.0.4 - - [23/Jul/2019:16:00:34 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" +172.25.0.4 - - [23/Jul/2019:16:00:35 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" +172.25.0.4 - - [23/Jul/2019:16:00:36 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" +172.25.0.4 - - [23/Jul/2019:16:00:37 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" +172.25.0.4 - - [23/Jul/2019:16:00:38 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" +172.25.0.4 - - [23/Jul/2019:16:00:39 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" +172.25.0.4 - - [23/Jul/2019:16:00:40 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" +172.25.0.4 - - [23/Jul/2019:16:00:41 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" +172.25.0.4 - - [23/Jul/2019:16:00:42 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" +172.25.0.4 - - [23/Jul/2019:16:00:43 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" +172.25.0.4 - - [23/Jul/2019:16:00:44 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" +172.25.0.4 - - [23/Jul/2019:16:00:45 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" +172.25.0.4 - - [23/Jul/2019:16:00:46 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" +172.25.0.4 - - [23/Jul/2019:16:00:47 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" +172.25.0.4 - - [23/Jul/2019:16:00:48 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" +172.25.0.4 - - [23/Jul/2019:16:00:49 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" +172.25.0.4 - - [23/Jul/2019:16:00:50 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" +172.25.0.4 - - [23/Jul/2019:16:00:51 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" +172.25.0.4 - - [23/Jul/2019:16:00:52 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" +172.25.0.4 - - [23/Jul/2019:16:00:53 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" +172.25.0.4 - - [23/Jul/2019:16:00:54 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" +172.25.0.4 - - [23/Jul/2019:16:00:55 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" +172.25.0.4 - - [23/Jul/2019:16:00:56 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" +172.25.0.4 - - [23/Jul/2019:16:00:57 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" +172.25.0.4 - - [23/Jul/2019:16:00:58 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" +172.25.0.4 - - [23/Jul/2019:16:00:59 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" +172.25.0.4 - - [23/Jul/2019:16:01:00 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" +172.25.0.4 - - [23/Jul/2019:16:01:01 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" +172.25.0.4 - - [23/Jul/2019:16:01:02 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" +172.25.0.4 - - [23/Jul/2019:16:01:03 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" +172.25.0.4 - - [23/Jul/2019:16:01:04 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" +172.25.0.4 - - [23/Jul/2019:16:01:05 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" +127.0.0.1 - - [23/Jul/2019:16:01:06 +0000] "OPTIONS * HTTP/1.0" 200 126 "-" "Apache/2.4.38 (Debian) PHP/7.2.20 (internal dummy connection)" +127.0.0.1 - - [23/Jul/2019:16:01:07 +0000] "OPTIONS * HTTP/1.0" 200 126 "-" "Apache/2.4.38 (Debian) PHP/7.2.20 (internal dummy connection)" +172.25.0.4 - - [23/Jul/2019:16:01:35 +0000] "POST /graphql HTTP/1.1" 404 441 "-" "Symfony BrowserKit" +172.25.0.4 - - [23/Jul/2019:16:18:04 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" +172.25.0.4 - - [23/Jul/2019:16:18:05 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" +172.25.0.4 - - [23/Jul/2019:16:18:06 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" +172.25.0.4 - - [23/Jul/2019:16:18:07 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" +172.25.0.4 - - [23/Jul/2019:16:18:08 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" +172.25.0.4 - - [23/Jul/2019:16:18:09 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" +172.25.0.4 - - [23/Jul/2019:16:18:10 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" +172.25.0.4 - - [23/Jul/2019:16:18:11 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" +172.25.0.4 - - [23/Jul/2019:16:18:12 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" +172.25.0.4 - - [23/Jul/2019:16:18:13 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" +172.25.0.4 - - [23/Jul/2019:16:18:14 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" +172.25.0.4 - - [23/Jul/2019:16:18:15 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" +172.25.0.4 - - [23/Jul/2019:16:18:16 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" +172.25.0.4 - - [23/Jul/2019:16:18:17 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" +172.25.0.4 - - [23/Jul/2019:16:18:18 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" +172.25.0.4 - - [23/Jul/2019:16:18:19 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" +172.25.0.4 - - [23/Jul/2019:16:18:20 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" +172.25.0.4 - - [23/Jul/2019:16:18:21 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" +172.25.0.4 - - [23/Jul/2019:16:18:22 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" +172.25.0.4 - - [23/Jul/2019:16:18:23 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" +172.25.0.4 - - [23/Jul/2019:16:18:24 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" +172.25.0.4 - - [23/Jul/2019:16:18:25 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" +172.25.0.4 - - [23/Jul/2019:16:18:26 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" +172.25.0.4 - - [23/Jul/2019:16:18:27 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" +172.25.0.4 - - [23/Jul/2019:16:18:28 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" +172.25.0.4 - - [23/Jul/2019:16:18:29 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" +172.25.0.4 - - [23/Jul/2019:16:18:30 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" +172.25.0.4 - - [23/Jul/2019:16:18:31 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" +172.25.0.4 - - [23/Jul/2019:16:18:32 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" +172.25.0.4 - - [23/Jul/2019:16:18:33 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" +172.25.0.4 - - [23/Jul/2019:16:18:34 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" +172.25.0.4 - - [23/Jul/2019:16:18:35 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" +172.25.0.4 - - [23/Jul/2019:16:18:36 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" +172.25.0.4 - - [23/Jul/2019:16:18:37 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" +172.25.0.4 - - [23/Jul/2019:16:18:38 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" +172.25.0.4 - - [23/Jul/2019:16:18:39 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" +172.25.0.4 - - [23/Jul/2019:16:18:40 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" +172.25.0.4 - - [23/Jul/2019:16:18:41 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" +172.25.0.4 - - [23/Jul/2019:16:18:42 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" +172.25.0.4 - - [23/Jul/2019:16:18:43 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" +172.25.0.4 - - [23/Jul/2019:16:18:44 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" +172.25.0.4 - - [23/Jul/2019:16:18:45 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" +172.25.0.4 - - [23/Jul/2019:16:18:46 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" +172.25.0.4 - - [23/Jul/2019:16:18:47 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" +172.25.0.4 - - [23/Jul/2019:16:18:48 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" +172.25.0.4 - - [23/Jul/2019:16:18:49 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" +172.25.0.4 - - [23/Jul/2019:16:18:50 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" +172.25.0.4 - - [23/Jul/2019:16:18:51 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" +172.25.0.4 - - [23/Jul/2019:16:18:52 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" +172.25.0.4 - - [23/Jul/2019:16:18:53 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" +172.25.0.4 - - [23/Jul/2019:16:18:54 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" +172.25.0.4 - - [23/Jul/2019:16:18:55 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" +172.25.0.4 - - [23/Jul/2019:16:18:56 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" +172.25.0.4 - - [23/Jul/2019:16:18:57 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" +172.25.0.4 - - [23/Jul/2019:16:18:58 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" +172.25.0.4 - - [23/Jul/2019:16:18:59 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" +172.25.0.4 - - [23/Jul/2019:16:19:00 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" +172.25.0.4 - - [23/Jul/2019:16:19:01 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" +172.25.0.4 - - [23/Jul/2019:16:19:02 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" +172.25.0.4 - - [23/Jul/2019:16:19:03 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" +172.25.0.4 - - [23/Jul/2019:16:19:04 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" +172.25.0.4 - - [23/Jul/2019:16:19:05 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" +172.25.0.4 - - [23/Jul/2019:16:19:06 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" +172.25.0.4 - - [23/Jul/2019:16:19:07 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" +172.25.0.4 - - [23/Jul/2019:16:19:08 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" +172.25.0.4 - - [23/Jul/2019:16:19:09 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" +172.25.0.4 - - [23/Jul/2019:16:19:10 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" +172.25.0.4 - - [23/Jul/2019:16:19:11 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" +172.25.0.4 - - [23/Jul/2019:16:19:12 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" +172.25.0.4 - - [23/Jul/2019:16:19:13 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" +172.25.0.4 - - [23/Jul/2019:16:19:14 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" +172.25.0.4 - - [23/Jul/2019:16:19:15 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" +172.25.0.4 - - [23/Jul/2019:16:19:16 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" +172.25.0.4 - - [23/Jul/2019:16:19:17 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" +172.25.0.4 - - [23/Jul/2019:16:19:18 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" +172.25.0.4 - - [23/Jul/2019:16:19:19 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" +172.25.0.4 - - [23/Jul/2019:16:19:20 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" +172.25.0.4 - - [23/Jul/2019:16:19:21 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" +172.25.0.4 - - [23/Jul/2019:16:19:22 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" +172.25.0.4 - - [23/Jul/2019:16:19:23 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" +172.25.0.4 - - [23/Jul/2019:16:19:24 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" +172.25.0.4 - - [23/Jul/2019:16:19:25 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" +172.25.0.4 - - [23/Jul/2019:16:19:26 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" +172.25.0.4 - - [23/Jul/2019:16:19:27 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" +172.25.0.4 - - [23/Jul/2019:16:19:28 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" +172.25.0.4 - - [23/Jul/2019:16:19:29 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" +172.25.0.4 - - [23/Jul/2019:16:19:30 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" +172.25.0.4 - - [23/Jul/2019:16:19:31 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" +172.25.0.4 - - [23/Jul/2019:16:19:32 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" +172.25.0.4 - - [23/Jul/2019:16:19:33 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" +172.25.0.4 - - [23/Jul/2019:16:19:34 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" +172.25.0.4 - - [23/Jul/2019:16:19:35 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" +172.25.0.4 - - [23/Jul/2019:16:19:36 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" +172.25.0.4 - - [23/Jul/2019:16:19:37 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" +172.25.0.4 - - [23/Jul/2019:16:19:38 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" +172.25.0.4 - - [23/Jul/2019:16:19:39 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" +172.25.0.4 - - [23/Jul/2019:16:19:40 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" +172.25.0.4 - - [23/Jul/2019:16:19:41 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" +172.25.0.4 - - [23/Jul/2019:16:19:42 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" +172.25.0.4 - - [23/Jul/2019:16:19:43 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" +172.25.0.4 - - [23/Jul/2019:16:19:44 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" +172.25.0.4 - - [23/Jul/2019:16:19:45 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" +172.25.0.4 - - [23/Jul/2019:16:19:46 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" +172.25.0.4 - - [23/Jul/2019:16:19:47 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" +172.25.0.4 - - [23/Jul/2019:16:19:48 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" +172.25.0.4 - - [23/Jul/2019:16:19:49 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" +172.25.0.4 - - [23/Jul/2019:16:19:50 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" +172.25.0.4 - - [23/Jul/2019:16:19:51 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" +172.25.0.4 - - [23/Jul/2019:16:19:52 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" +172.25.0.4 - - [23/Jul/2019:16:19:53 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" +172.25.0.4 - - [23/Jul/2019:16:19:54 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" +172.25.0.4 - - [23/Jul/2019:16:19:55 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" +172.25.0.4 - - [23/Jul/2019:16:19:56 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" +172.25.0.4 - - [23/Jul/2019:16:19:57 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" +172.25.0.4 - - [23/Jul/2019:16:19:58 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" +172.25.0.4 - - [23/Jul/2019:16:19:59 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" +172.25.0.4 - - [23/Jul/2019:16:20:00 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" +172.25.0.4 - - [23/Jul/2019:16:20:01 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" +172.25.0.4 - - [23/Jul/2019:16:20:02 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" +172.25.0.4 - - [23/Jul/2019:16:20:03 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" +172.25.0.4 - - [23/Jul/2019:16:20:04 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" +172.25.0.4 - - [23/Jul/2019:16:20:05 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" +172.25.0.4 - - [23/Jul/2019:16:20:06 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" +172.25.0.4 - - [23/Jul/2019:16:20:07 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" +172.25.0.4 - - [23/Jul/2019:16:20:08 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" +172.25.0.4 - - [23/Jul/2019:16:20:09 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" +172.25.0.4 - - [23/Jul/2019:16:20:10 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" +172.25.0.4 - - [23/Jul/2019:16:20:11 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" +172.25.0.4 - - [23/Jul/2019:16:20:12 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" +172.25.0.4 - - [23/Jul/2019:16:20:13 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" +172.25.0.4 - - [23/Jul/2019:16:20:14 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" +172.25.0.4 - - [23/Jul/2019:16:20:15 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" +172.25.0.4 - - [23/Jul/2019:16:20:16 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" +172.25.0.4 - - [23/Jul/2019:16:20:17 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" +172.25.0.4 - - [23/Jul/2019:16:20:18 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" +172.25.0.4 - - [23/Jul/2019:16:20:19 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" +172.25.0.4 - - [23/Jul/2019:16:20:20 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" +172.25.0.4 - - [23/Jul/2019:16:20:21 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" +172.25.0.4 - - [23/Jul/2019:16:20:22 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" +172.25.0.4 - - [23/Jul/2019:16:20:23 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" +172.25.0.4 - - [23/Jul/2019:16:20:24 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" +172.25.0.4 - - [23/Jul/2019:16:20:25 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" +172.25.0.4 - - [23/Jul/2019:16:20:26 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" +172.25.0.4 - - [23/Jul/2019:16:20:27 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" +172.25.0.4 - - [23/Jul/2019:16:20:28 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" +172.25.0.4 - - [23/Jul/2019:16:20:29 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" +172.25.0.4 - - [23/Jul/2019:16:20:30 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" +172.25.0.4 - - [23/Jul/2019:16:20:31 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" +172.25.0.4 - - [23/Jul/2019:16:20:32 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" +172.25.0.4 - - [23/Jul/2019:16:20:33 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" +172.25.0.4 - - [23/Jul/2019:16:20:34 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" +172.25.0.4 - - [23/Jul/2019:16:20:35 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" +172.25.0.4 - - [23/Jul/2019:16:20:36 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" +172.25.0.4 - - [23/Jul/2019:16:20:37 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" +172.25.0.4 - - [23/Jul/2019:16:20:38 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" +172.25.0.4 - - [23/Jul/2019:16:20:39 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" +172.25.0.4 - - [23/Jul/2019:16:20:40 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" +172.25.0.4 - - [23/Jul/2019:16:20:41 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" +172.25.0.4 - - [23/Jul/2019:16:20:42 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" +172.25.0.4 - - [23/Jul/2019:16:20:43 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" +172.25.0.4 - - [23/Jul/2019:16:20:44 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" +172.25.0.4 - - [23/Jul/2019:16:20:45 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" +172.25.0.4 - - [23/Jul/2019:16:20:46 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" +172.25.0.4 - - [23/Jul/2019:16:20:47 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" +172.25.0.4 - - [23/Jul/2019:16:20:48 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" +172.25.0.4 - - [23/Jul/2019:16:20:49 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" +172.25.0.4 - - [23/Jul/2019:16:20:50 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" +172.25.0.4 - - [23/Jul/2019:16:20:51 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" +172.25.0.4 - - [23/Jul/2019:16:20:52 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" +172.25.0.4 - - [23/Jul/2019:16:20:53 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" +172.25.0.4 - - [23/Jul/2019:16:20:54 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" +172.25.0.4 - - [23/Jul/2019:16:20:55 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" +172.25.0.4 - - [23/Jul/2019:16:20:56 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" +172.25.0.4 - - [23/Jul/2019:16:20:57 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" +172.25.0.4 - - [23/Jul/2019:16:20:58 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" +172.25.0.4 - - [23/Jul/2019:16:20:59 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" +172.25.0.4 - - [23/Jul/2019:16:21:00 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" +127.0.0.1 - - [23/Jul/2019:16:21:01 +0000] "OPTIONS * HTTP/1.0" 200 126 "-" "Apache/2.4.38 (Debian) PHP/7.2.20 (internal dummy connection)" +127.0.0.1 - - [23/Jul/2019:16:21:02 +0000] "OPTIONS * HTTP/1.0" 200 126 "-" "Apache/2.4.38 (Debian) PHP/7.2.20 (internal dummy connection)" +172.25.0.4 - - [23/Jul/2019:16:22:08 +0000] "POST /graphql HTTP/1.1" 404 441 "-" "Symfony BrowserKit" +192.168.32.4 - - [23/Jul/2019:17:20:41 +0000] "GET /graphql HTTP/1.1" 404 443 "-" "Go-http-client/1.1" +192.168.32.4 - - [23/Jul/2019:17:20:42 +0000] "GET /graphql HTTP/1.1" 404 443 "-" "Go-http-client/1.1" +192.168.32.4 - - [23/Jul/2019:17:20:43 +0000] "GET /graphql HTTP/1.1" 404 443 "-" "Go-http-client/1.1" +192.168.32.4 - - [23/Jul/2019:17:20:44 +0000] "GET /graphql HTTP/1.1" 404 443 "-" "Go-http-client/1.1" +192.168.32.4 - - [23/Jul/2019:17:20:45 +0000] "GET /graphql HTTP/1.1" 404 443 "-" "Go-http-client/1.1" +192.168.32.4 - - [23/Jul/2019:17:20:46 +0000] "GET /graphql HTTP/1.1" 404 443 "-" "Go-http-client/1.1" +192.168.32.4 - - [23/Jul/2019:17:20:47 +0000] "GET /graphql HTTP/1.1" 404 443 "-" "Go-http-client/1.1" +192.168.32.4 - - [23/Jul/2019:17:20:48 +0000] "GET /graphql HTTP/1.1" 404 443 "-" "Go-http-client/1.1" +192.168.32.4 - - [23/Jul/2019:17:20:49 +0000] "GET /graphql HTTP/1.1" 404 443 "-" "Go-http-client/1.1" +192.168.32.4 - - [23/Jul/2019:17:20:50 +0000] "GET /graphql HTTP/1.1" 404 443 "-" "Go-http-client/1.1" +192.168.32.4 - - [23/Jul/2019:17:20:51 +0000] "GET /graphql HTTP/1.1" 404 443 "-" "Go-http-client/1.1" +192.168.32.4 - - [23/Jul/2019:17:20:52 +0000] "GET /graphql HTTP/1.1" 404 443 "-" "Go-http-client/1.1" +192.168.32.4 - - [23/Jul/2019:17:20:53 +0000] "GET /graphql HTTP/1.1" 404 443 "-" "Go-http-client/1.1" +192.168.32.4 - - [23/Jul/2019:17:20:54 +0000] "GET /graphql HTTP/1.1" 404 443 "-" "Go-http-client/1.1" +192.168.32.4 - - [23/Jul/2019:17:20:55 +0000] "GET /graphql HTTP/1.1" 404 443 "-" "Go-http-client/1.1" +192.168.32.4 - - [23/Jul/2019:17:20:56 +0000] "GET /graphql HTTP/1.1" 404 443 "-" "Go-http-client/1.1" +192.168.32.4 - - [23/Jul/2019:17:20:57 +0000] "GET /graphql HTTP/1.1" 404 443 "-" "Go-http-client/1.1" +192.168.32.4 - - [23/Jul/2019:17:20:58 +0000] "GET /graphql HTTP/1.1" 404 443 "-" "Go-http-client/1.1" +192.168.32.4 - - [23/Jul/2019:17:20:59 +0000] "GET /graphql HTTP/1.1" 404 443 "-" "Go-http-client/1.1" +192.168.32.4 - - [23/Jul/2019:17:21:00 +0000] "GET /graphql HTTP/1.1" 404 443 "-" "Go-http-client/1.1" +192.168.32.4 - - [23/Jul/2019:17:21:01 +0000] "GET /graphql HTTP/1.1" 404 443 "-" "Go-http-client/1.1" +192.168.32.4 - - [23/Jul/2019:17:21:02 +0000] "GET /graphql HTTP/1.1" 404 443 "-" "Go-http-client/1.1" +192.168.32.4 - - [23/Jul/2019:17:21:03 +0000] "GET /graphql HTTP/1.1" 404 443 "-" "Go-http-client/1.1" +192.168.32.4 - - [23/Jul/2019:17:21:04 +0000] "GET /graphql HTTP/1.1" 404 443 "-" "Go-http-client/1.1" +192.168.32.4 - - [23/Jul/2019:17:21:05 +0000] "GET /graphql HTTP/1.1" 404 443 "-" "Go-http-client/1.1" +192.168.32.4 - - [23/Jul/2019:17:21:06 +0000] "GET /graphql HTTP/1.1" 404 443 "-" "Go-http-client/1.1" +192.168.32.4 - - [23/Jul/2019:17:21:07 +0000] "GET /graphql HTTP/1.1" 404 443 "-" "Go-http-client/1.1" +192.168.32.4 - - [23/Jul/2019:17:21:08 +0000] "GET /graphql HTTP/1.1" 404 443 "-" "Go-http-client/1.1" +192.168.32.4 - - [23/Jul/2019:17:21:09 +0000] "GET /graphql HTTP/1.1" 404 443 "-" "Go-http-client/1.1" +192.168.32.4 - - [23/Jul/2019:17:21:10 +0000] "GET /graphql HTTP/1.1" 404 443 "-" "Go-http-client/1.1" +192.168.32.4 - - [23/Jul/2019:17:21:11 +0000] "GET /graphql HTTP/1.1" 404 443 "-" "Go-http-client/1.1" +192.168.32.4 - - [23/Jul/2019:17:21:12 +0000] "GET /graphql HTTP/1.1" 404 443 "-" "Go-http-client/1.1" +192.168.32.4 - - [23/Jul/2019:17:21:13 +0000] "GET /graphql HTTP/1.1" 404 443 "-" "Go-http-client/1.1" +192.168.32.4 - - [23/Jul/2019:17:21:14 +0000] "GET /graphql HTTP/1.1" 404 443 "-" "Go-http-client/1.1" +192.168.32.4 - - [23/Jul/2019:17:21:15 +0000] "GET /graphql HTTP/1.1" 404 443 "-" "Go-http-client/1.1" +192.168.32.4 - - [23/Jul/2019:17:21:16 +0000] "GET /graphql HTTP/1.1" 404 443 "-" "Go-http-client/1.1" +192.168.32.4 - - [23/Jul/2019:17:21:17 +0000] "GET /graphql HTTP/1.1" 404 443 "-" "Go-http-client/1.1" +192.168.32.4 - - [23/Jul/2019:17:21:18 +0000] "GET /graphql HTTP/1.1" 404 443 "-" "Go-http-client/1.1" +192.168.32.4 - - [23/Jul/2019:17:21:19 +0000] "GET /graphql HTTP/1.1" 404 443 "-" "Go-http-client/1.1" +192.168.32.4 - - [23/Jul/2019:17:21:20 +0000] "GET /graphql HTTP/1.1" 404 443 "-" "Go-http-client/1.1" +192.168.32.4 - - [23/Jul/2019:17:21:21 +0000] "GET /graphql HTTP/1.1" 404 443 "-" "Go-http-client/1.1" +192.168.32.4 - - [23/Jul/2019:17:21:22 +0000] "GET /graphql HTTP/1.1" 404 443 "-" "Go-http-client/1.1" +192.168.32.4 - - [23/Jul/2019:17:21:23 +0000] "GET /graphql HTTP/1.1" 404 443 "-" "Go-http-client/1.1" +192.168.32.4 - - [23/Jul/2019:17:21:24 +0000] "GET /graphql HTTP/1.1" 404 443 "-" "Go-http-client/1.1" +192.168.32.4 - - [23/Jul/2019:17:21:25 +0000] "GET /graphql HTTP/1.1" 404 443 "-" "Go-http-client/1.1" +192.168.32.4 - - [23/Jul/2019:17:21:26 +0000] "GET /graphql HTTP/1.1" 404 443 "-" "Go-http-client/1.1" +192.168.32.4 - - [23/Jul/2019:17:21:27 +0000] "GET /graphql HTTP/1.1" 404 443 "-" "Go-http-client/1.1" +192.168.32.4 - - [23/Jul/2019:17:21:28 +0000] "GET /graphql HTTP/1.1" 404 443 "-" "Go-http-client/1.1" +192.168.32.4 - - [23/Jul/2019:17:21:29 +0000] "GET /graphql HTTP/1.1" 404 443 "-" "Go-http-client/1.1" +192.168.32.4 - - [23/Jul/2019:17:21:30 +0000] "GET /graphql HTTP/1.1" 404 443 "-" "Go-http-client/1.1" +192.168.32.4 - - [23/Jul/2019:17:21:31 +0000] "GET /graphql HTTP/1.1" 404 443 "-" "Go-http-client/1.1" +192.168.32.4 - - [23/Jul/2019:17:21:32 +0000] "GET /graphql HTTP/1.1" 404 443 "-" "Go-http-client/1.1" +192.168.32.4 - - [23/Jul/2019:17:21:33 +0000] "GET /graphql HTTP/1.1" 404 443 "-" "Go-http-client/1.1" +192.168.32.4 - - [23/Jul/2019:17:21:34 +0000] "GET /graphql HTTP/1.1" 404 443 "-" "Go-http-client/1.1" +192.168.32.4 - - [23/Jul/2019:17:21:35 +0000] "GET /graphql HTTP/1.1" 404 443 "-" "Go-http-client/1.1" +192.168.32.4 - - [23/Jul/2019:17:21:36 +0000] "GET /graphql HTTP/1.1" 404 443 "-" "Go-http-client/1.1" +192.168.32.4 - - [23/Jul/2019:17:21:37 +0000] "GET /graphql HTTP/1.1" 404 443 "-" "Go-http-client/1.1" +192.168.32.4 - - [23/Jul/2019:17:21:38 +0000] "GET /graphql HTTP/1.1" 404 443 "-" "Go-http-client/1.1" +192.168.32.4 - - [23/Jul/2019:17:21:39 +0000] "GET /graphql HTTP/1.1" 404 443 "-" "Go-http-client/1.1" +192.168.32.4 - - [23/Jul/2019:17:21:40 +0000] "GET /graphql HTTP/1.1" 404 443 "-" "Go-http-client/1.1" +192.168.32.4 - - [23/Jul/2019:17:21:41 +0000] "GET /graphql HTTP/1.1" 404 443 "-" "Go-http-client/1.1" +192.168.32.4 - - [23/Jul/2019:17:21:42 +0000] "GET /graphql HTTP/1.1" 404 443 "-" "Go-http-client/1.1" +192.168.32.4 - - [23/Jul/2019:17:21:43 +0000] "GET /graphql HTTP/1.1" 404 443 "-" "Go-http-client/1.1" +192.168.32.4 - - [23/Jul/2019:17:21:44 +0000] "GET /graphql HTTP/1.1" 404 443 "-" "Go-http-client/1.1" +192.168.32.4 - - [23/Jul/2019:17:21:45 +0000] "GET /graphql HTTP/1.1" 404 443 "-" "Go-http-client/1.1" +192.168.32.4 - - [23/Jul/2019:17:21:46 +0000] "GET /graphql HTTP/1.1" 404 443 "-" "Go-http-client/1.1" +192.168.32.4 - - [23/Jul/2019:17:21:47 +0000] "GET /graphql HTTP/1.1" 404 443 "-" "Go-http-client/1.1" +192.168.32.4 - - [23/Jul/2019:17:21:48 +0000] "GET /graphql HTTP/1.1" 404 443 "-" "Go-http-client/1.1" +192.168.32.4 - - [23/Jul/2019:17:21:49 +0000] "GET /graphql HTTP/1.1" 404 443 "-" "Go-http-client/1.1" +192.168.32.4 - - [23/Jul/2019:17:21:50 +0000] "GET /graphql HTTP/1.1" 404 443 "-" "Go-http-client/1.1" +192.168.32.4 - - [23/Jul/2019:17:21:51 +0000] "GET /graphql HTTP/1.1" 404 443 "-" "Go-http-client/1.1" +192.168.32.4 - - [23/Jul/2019:17:21:52 +0000] "GET /graphql HTTP/1.1" 404 443 "-" "Go-http-client/1.1" +192.168.32.4 - - [23/Jul/2019:17:21:53 +0000] "GET /graphql HTTP/1.1" 404 443 "-" "Go-http-client/1.1" +192.168.32.4 - - [23/Jul/2019:17:21:54 +0000] "GET /graphql HTTP/1.1" 404 443 "-" "Go-http-client/1.1" +192.168.32.4 - - [23/Jul/2019:17:21:55 +0000] "GET /graphql HTTP/1.1" 404 443 "-" "Go-http-client/1.1" +192.168.32.4 - - [23/Jul/2019:17:21:56 +0000] "GET /graphql HTTP/1.1" 404 443 "-" "Go-http-client/1.1" +192.168.32.4 - - [23/Jul/2019:17:21:57 +0000] "GET /graphql HTTP/1.1" 404 443 "-" "Go-http-client/1.1" +192.168.32.4 - - [23/Jul/2019:17:21:58 +0000] "GET /graphql HTTP/1.1" 404 443 "-" "Go-http-client/1.1" +192.168.32.4 - - [23/Jul/2019:17:21:59 +0000] "GET /graphql HTTP/1.1" 404 443 "-" "Go-http-client/1.1" +192.168.32.4 - - [23/Jul/2019:17:22:00 +0000] "GET /graphql HTTP/1.1" 404 443 "-" "Go-http-client/1.1" +192.168.32.4 - - [23/Jul/2019:17:22:01 +0000] "GET /graphql HTTP/1.1" 404 443 "-" "Go-http-client/1.1" +192.168.32.4 - - [23/Jul/2019:17:22:02 +0000] "GET /graphql HTTP/1.1" 404 443 "-" "Go-http-client/1.1" +192.168.32.4 - - [23/Jul/2019:17:22:03 +0000] "GET /graphql HTTP/1.1" 404 443 "-" "Go-http-client/1.1" +192.168.32.4 - - [23/Jul/2019:17:22:04 +0000] "GET /graphql HTTP/1.1" 404 443 "-" "Go-http-client/1.1" +192.168.32.4 - - [23/Jul/2019:17:22:05 +0000] "GET /graphql HTTP/1.1" 404 443 "-" "Go-http-client/1.1" +192.168.32.4 - - [23/Jul/2019:17:22:06 +0000] "GET /graphql HTTP/1.1" 404 443 "-" "Go-http-client/1.1" +192.168.32.4 - - [23/Jul/2019:17:22:07 +0000] "GET /graphql HTTP/1.1" 404 443 "-" "Go-http-client/1.1" +192.168.32.4 - - [23/Jul/2019:17:22:08 +0000] "GET /graphql HTTP/1.1" 404 443 "-" "Go-http-client/1.1" +192.168.32.4 - - [23/Jul/2019:17:22:09 +0000] "GET /graphql HTTP/1.1" 404 443 "-" "Go-http-client/1.1" +192.168.32.4 - - [23/Jul/2019:17:22:10 +0000] "GET /graphql HTTP/1.1" 404 443 "-" "Go-http-client/1.1" +192.168.32.4 - - [23/Jul/2019:17:22:11 +0000] "GET /graphql HTTP/1.1" 404 443 "-" "Go-http-client/1.1" +192.168.32.4 - - [23/Jul/2019:17:22:12 +0000] "GET /graphql HTTP/1.1" 404 443 "-" "Go-http-client/1.1" +192.168.32.4 - - [23/Jul/2019:17:22:13 +0000] "GET /graphql HTTP/1.1" 404 443 "-" "Go-http-client/1.1" +192.168.32.4 - - [23/Jul/2019:17:22:14 +0000] "GET /graphql HTTP/1.1" 404 443 "-" "Go-http-client/1.1" +192.168.32.4 - - [23/Jul/2019:17:22:15 +0000] "GET /graphql HTTP/1.1" 404 443 "-" "Go-http-client/1.1" +192.168.32.4 - - [23/Jul/2019:17:22:16 +0000] "GET /graphql HTTP/1.1" 404 443 "-" "Go-http-client/1.1" +192.168.32.4 - - [23/Jul/2019:17:22:17 +0000] "GET /graphql HTTP/1.1" 404 443 "-" "Go-http-client/1.1" +192.168.32.4 - - [23/Jul/2019:17:22:18 +0000] "GET /graphql HTTP/1.1" 404 443 "-" "Go-http-client/1.1" +192.168.32.4 - - [23/Jul/2019:17:22:19 +0000] "GET /graphql HTTP/1.1" 404 443 "-" "Go-http-client/1.1" +192.168.32.4 - - [23/Jul/2019:17:22:20 +0000] "GET /graphql HTTP/1.1" 404 443 "-" "Go-http-client/1.1" +192.168.32.4 - - [23/Jul/2019:17:22:21 +0000] "GET /graphql HTTP/1.1" 404 443 "-" "Go-http-client/1.1" +192.168.32.4 - - [23/Jul/2019:17:22:22 +0000] "GET /graphql HTTP/1.1" 404 443 "-" "Go-http-client/1.1" +192.168.32.4 - - [23/Jul/2019:17:22:23 +0000] "GET /graphql HTTP/1.1" 404 443 "-" "Go-http-client/1.1" +192.168.32.4 - - [23/Jul/2019:17:22:24 +0000] "GET /graphql HTTP/1.1" 404 443 "-" "Go-http-client/1.1" +192.168.32.4 - - [23/Jul/2019:17:22:25 +0000] "GET /graphql HTTP/1.1" 404 443 "-" "Go-http-client/1.1" +192.168.32.4 - - [23/Jul/2019:17:22:26 +0000] "GET /graphql HTTP/1.1" 404 443 "-" "Go-http-client/1.1" +192.168.32.4 - - [23/Jul/2019:17:22:27 +0000] "GET /graphql HTTP/1.1" 404 443 "-" "Go-http-client/1.1" +192.168.32.4 - - [23/Jul/2019:17:22:28 +0000] "GET /graphql HTTP/1.1" 404 443 "-" "Go-http-client/1.1" +127.0.0.1 - - [23/Jul/2019:17:22:29 +0000] "OPTIONS * HTTP/1.0" 200 126 "-" "Apache/2.4.38 (Debian) PHP/7.2.20 (internal dummy connection)" +127.0.0.1 - - [23/Jul/2019:17:22:30 +0000] "OPTIONS * HTTP/1.0" 200 126 "-" "Apache/2.4.38 (Debian) PHP/7.2.20 (internal dummy connection)" +127.0.0.1 - - [23/Jul/2019:17:22:31 +0000] "OPTIONS * HTTP/1.0" 200 126 "-" "Apache/2.4.38 (Debian) PHP/7.2.20 (internal dummy connection)" +192.168.32.4 - - [23/Jul/2019:17:22:56 +0000] "POST /graphql HTTP/1.1" 404 443 "-" "Symfony BrowserKit" diff --git a/.log/app/access.log b/.log/app/access.log new file mode 100644 index 000000000..434e92ef9 --- /dev/null +++ b/.log/app/access.log @@ -0,0 +1,81 @@ +192.168.176.1 - - [23/Jul/2019:23:10:29 +0000] "GET /graphql HTTP/1.1" 200 758 "-" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/75.0.3770.100 Safari/537.36" +192.168.176.1 - - [23/Jul/2019:23:10:31 +0000] "GET /favicon.ico HTTP/1.1" 200 228 "http://localhost:8001/graphql" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/75.0.3770.100 Safari/537.36" +127.0.0.1 - - [23/Jul/2019:23:10:32 +0000] "POST /wp-admin/admin-ajax.php?action=wp_1_wc_privacy_cleanup&nonce=fe8313edf5 HTTP/1.1" 200 492 "http://localhost/wp-admin/admin-ajax.php?action=wp_1_wc_privacy_cleanup&nonce=fe8313edf5" "WordPress/5.2.2; http://localhost" +127.0.0.1 - - [23/Jul/2019:23:10:30 +0000] "POST /wp-cron.php?doing_wp_cron=1563923430.3347780704498291015625 HTTP/1.1" 200 192 "http://localhost/wp-cron.php?doing_wp_cron=1563923430.3347780704498291015625" "WordPress/5.2.2; http://localhost" +192.168.176.1 - - [23/Jul/2019:23:14:18 +0000] "GET /graphql HTTP/1.1" 200 758 "-" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/75.0.3770.100 Safari/537.36" +192.168.176.1 - - [23/Jul/2019:23:14:19 +0000] "GET /favicon.ico HTTP/1.1" 200 228 "http://localhost:8001/graphql" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/75.0.3770.100 Safari/537.36" +192.168.176.1 - - [23/Jul/2019:23:14:42 +0000] "GET /wp-admin HTTP/1.1" 301 584 "-" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/75.0.3770.100 Safari/537.36" +127.0.0.1 - - [23/Jul/2019:23:14:43 +0000] "POST /wp-cron.php?doing_wp_cron=1563923682.8695790767669677734375 HTTP/1.1" 200 192 "http://localhost/wp-cron.php?doing_wp_cron=1563923682.8695790767669677734375" "WordPress/5.2.2; http://localhost" +192.168.176.1 - - [23/Jul/2019:23:14:42 +0000] "GET /wp-admin/ HTTP/1.1" 302 470 "-" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/75.0.3770.100 Safari/537.36" +192.168.176.1 - - [23/Jul/2019:23:15:34 +0000] "-" 408 0 "-" "-" +192.168.240.1 - - [23/Jul/2019:23:22:52 +0000] "GET /graphql HTTP/1.1" 200 758 "-" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/75.0.3770.100 Safari/537.36" +192.168.240.1 - - [23/Jul/2019:23:22:54 +0000] "GET /favicon.ico HTTP/1.1" 200 228 "http://localhost:8001/graphql" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/75.0.3770.100 Safari/537.36" +192.168.240.1 - - [23/Jul/2019:23:22:56 +0000] "GET /wp-admin/ HTTP/1.1" 302 475 "-" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/75.0.3770.100 Safari/537.36" +192.168.240.1 - - [23/Jul/2019:23:22:57 +0000] "GET /wp-login.php?redirect_to=http%3A%2F%2Flocalhost%3A8001%2Fwp-admin%2F&reauth=1 HTTP/1.1" 200 3784 "-" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/75.0.3770.100 Safari/537.36" +192.168.240.1 - - [23/Jul/2019:23:22:57 +0000] "GET /wp-includes/css/dashicons.min.css?ver=5.2.2 HTTP/1.1" 200 28819 "http://localhost:8001/wp-login.php?redirect_to=http%3A%2F%2Flocalhost%3A8001%2Fwp-admin%2F&reauth=1" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/75.0.3770.100 Safari/537.36" +192.168.240.1 - - [23/Jul/2019:23:22:57 +0000] "GET /wp-includes/css/buttons.min.css?ver=5.2.2 HTTP/1.1" 200 1858 "http://localhost:8001/wp-login.php?redirect_to=http%3A%2F%2Flocalhost%3A8001%2Fwp-admin%2F&reauth=1" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/75.0.3770.100 Safari/537.36" +192.168.240.1 - - [23/Jul/2019:23:22:57 +0000] "GET /wp-admin/css/forms.min.css?ver=5.2.2 HTTP/1.1" 200 5807 "http://localhost:8001/wp-login.php?redirect_to=http%3A%2F%2Flocalhost%3A8001%2Fwp-admin%2F&reauth=1" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/75.0.3770.100 Safari/537.36" +192.168.240.1 - - [23/Jul/2019:23:22:57 +0000] "GET /wp-admin/css/l10n.min.css?ver=5.2.2 HTTP/1.1" 200 1022 "http://localhost:8001/wp-login.php?redirect_to=http%3A%2F%2Flocalhost%3A8001%2Fwp-admin%2F&reauth=1" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/75.0.3770.100 Safari/537.36" +192.168.240.1 - - [23/Jul/2019:23:22:57 +0000] "GET /wp-admin/css/login.min.css?ver=5.2.2 HTTP/1.1" 200 7245 "http://localhost:8001/wp-login.php?redirect_to=http%3A%2F%2Flocalhost%3A8001%2Fwp-admin%2F&reauth=1" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/75.0.3770.100 Safari/537.36" +192.168.240.1 - - [23/Jul/2019:23:22:57 +0000] "GET /wp-admin/images/wordpress-logo.svg?ver=20131107 HTTP/1.1" 200 1810 "http://localhost:8001/wp-admin/css/login.min.css?ver=5.2.2" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/75.0.3770.100 Safari/537.36" +192.168.240.1 - - [23/Jul/2019:23:22:57 +0000] "GET /favicon.ico HTTP/1.1" 200 228 "http://localhost:8001/wp-login.php?redirect_to=http%3A%2F%2Flocalhost%3A8001%2Fwp-admin%2F&reauth=1" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/75.0.3770.100 Safari/537.36" +192.168.240.1 - - [23/Jul/2019:23:23:02 +0000] "POST /wp-login.php HTTP/1.1" 302 1149 "http://localhost:8001/wp-login.php?redirect_to=http%3A%2F%2Flocalhost%3A8001%2Fwp-admin%2F&reauth=1" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/75.0.3770.100 Safari/537.36" +127.0.0.1 - - [23/Jul/2019:23:23:02 +0000] "OPTIONS * HTTP/1.0" 200 126 "-" "Apache/2.4.38 (Debian) PHP/7.2.20 (internal dummy connection)" +127.0.0.1 - - [23/Jul/2019:23:23:03 +0000] "OPTIONS * HTTP/1.0" 200 126 "-" "Apache/2.4.38 (Debian) PHP/7.2.20 (internal dummy connection)" +192.168.240.1 - - [23/Jul/2019:23:23:02 +0000] "GET /wp-admin/ HTTP/1.1" 200 17747 "http://localhost:8001/wp-login.php?redirect_to=http%3A%2F%2Flocalhost%3A8001%2Fwp-admin%2F&reauth=1" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/75.0.3770.100 Safari/537.36" +192.168.240.1 - - [23/Jul/2019:23:23:05 +0000] "GET /wp-includes/js/thickbox/thickbox.css?ver=5.2.2 HTTP/1.1" 200 1268 "http://localhost:8001/wp-admin/" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/75.0.3770.100 Safari/537.36" +192.168.240.1 - - [23/Jul/2019:23:23:05 +0000] "GET /wp-content/plugins/woocommerce/assets/css/menu.css?ver=3.6.5 HTTP/1.1" 200 1646 "http://localhost:8001/wp-admin/" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/75.0.3770.100 Safari/537.36" +192.168.240.1 - - [23/Jul/2019:23:23:05 +0000] "GET /wp-admin/load-styles.php?c=0&dir=ltr&load%5B%5D=dashicons,admin-bar,common,forms,admin-menu,dashboard,list-tables,edit,revisions,media,themes,about,nav-menus,wp-pointer,widgets&load%5B%5D=,site-icon,l10n,buttons,wp-auth-check&ver=5.2.2 HTTP/1.1" 200 84249 "http://localhost:8001/wp-admin/" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/75.0.3770.100 Safari/537.36" +192.168.240.1 - - [23/Jul/2019:23:23:05 +0000] "GET /wp-content/plugins/woocommerce/assets/css/dashboard.css?ver=3.6.5 HTTP/1.1" 200 1512 "http://localhost:8001/wp-admin/" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/75.0.3770.100 Safari/537.36" +192.168.240.1 - - [23/Jul/2019:23:23:05 +0000] "GET /wp-content/plugins/woocommerce/assets/css/activation.css?ver=3.6.5 HTTP/1.1" 200 832 "http://localhost:8001/wp-admin/" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/75.0.3770.100 Safari/537.36" +192.168.240.1 - - [23/Jul/2019:23:23:05 +0000] "GET /wp-admin/load-scripts.php?c=0&load%5B%5D=jquery-core,jquery-migrate,utils,jquery-ui-core&ver=5.2.2 HTTP/1.1" 200 39618 "http://localhost:8001/wp-admin/" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/75.0.3770.100 Safari/537.36" +192.168.240.1 - - [23/Jul/2019:23:23:05 +0000] "GET /wp-includes/js/jquery/ui/datepicker.min.js?ver=1.11.4 HTTP/1.1" 200 11354 "http://localhost:8001/wp-admin/" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/75.0.3770.100 Safari/537.36" +192.168.240.1 - - [23/Jul/2019:23:23:05 +0000] "GET /wp-content/plugins/woocommerce/assets/js/admin/reports.min.js?ver=3.6.5 HTTP/1.1" 200 1696 "http://localhost:8001/wp-admin/" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/75.0.3770.100 Safari/537.36" +192.168.240.1 - - [23/Jul/2019:23:23:05 +0000] "GET /wp-content/plugins/woocommerce/assets/js/jquery-flot/jquery.flot.min.js?ver=3.6.5 HTTP/1.1" 200 12850 "http://localhost:8001/wp-admin/" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/75.0.3770.100 Safari/537.36" +192.168.240.1 - - [23/Jul/2019:23:23:05 +0000] "GET /wp-content/plugins/woocommerce/assets/js/jquery-flot/jquery.flot.resize.min.js?ver=3.6.5 HTTP/1.1" 200 933 "http://localhost:8001/wp-admin/" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/75.0.3770.100 Safari/537.36" +192.168.240.1 - - [23/Jul/2019:23:23:05 +0000] "GET /wp-content/plugins/woocommerce/assets/js/jquery-flot/jquery.flot.time.min.js?ver=3.6.5 HTTP/1.1" 200 2211 "http://localhost:8001/wp-admin/" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/75.0.3770.100 Safari/537.36" +192.168.240.1 - - [23/Jul/2019:23:23:05 +0000] "GET /wp-includes/css/editor.min.css?ver=5.2.2 HTTP/1.1" 200 6246 "http://localhost:8001/wp-admin/" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/75.0.3770.100 Safari/537.36" +192.168.240.1 - - [23/Jul/2019:23:23:05 +0000] "GET /wp-content/plugins/woocommerce/assets/js/jquery-flot/jquery.flot.pie.min.js?ver=3.6.5 HTTP/1.1" 200 3268 "http://localhost:8001/wp-admin/" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/75.0.3770.100 Safari/537.36" +192.168.240.1 - - [23/Jul/2019:23:23:05 +0000] "GET /wp-content/plugins/woocommerce/assets/js/jquery-flot/jquery.flot.stack.min.js?ver=3.6.5 HTTP/1.1" 200 995 "http://localhost:8001/wp-admin/" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/75.0.3770.100 Safari/537.36" +192.168.240.1 - - [23/Jul/2019:23:23:05 +0000] "GET /wp-includes/js/dist/vendor/wp-polyfill.min.js?ver=7.0.0 HTTP/1.1" 200 33220 "http://localhost:8001/wp-admin/" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/75.0.3770.100 Safari/537.36" +192.168.240.1 - - [23/Jul/2019:23:23:05 +0000] "GET /wp-admin/load-scripts.php?c=0&load%5B%5D=hoverIntent,common,admin-bar,wp-ajax-response,jquery-color,wp-lists,quicktags,jquery-query,admin-comments,jquery-ui-widget,jquer&load%5B%5D=y-ui-mouse,jquery-ui-sortable,postbox,underscore,wp-util,wp-a11y,dashboard,thickbox,plugin-install,updates,shortcode,media-uploa&load%5B%5D=d,svg-painter&ver=5.2.2 HTTP/1.1" 200 57228 "http://localhost:8001/wp-admin/" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/75.0.3770.100 Safari/537.36" +192.168.240.1 - - [23/Jul/2019:23:23:05 +0000] "GET /wp-includes/js/dist/hooks.min.js?ver=2.2.0 HTTP/1.1" 200 2063 "http://localhost:8001/wp-admin/" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/75.0.3770.100 Safari/537.36" +192.168.240.1 - - [23/Jul/2019:23:23:05 +0000] "GET /wp-includes/js/heartbeat.min.js?ver=5.2.2 HTTP/1.1" 200 2397 "http://localhost:8001/wp-admin/" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/75.0.3770.100 Safari/537.36" +192.168.240.1 - - [23/Jul/2019:23:23:05 +0000] "GET /wp-includes/js/wp-auth-check.min.js?ver=5.2.2 HTTP/1.1" 200 1130 "http://localhost:8001/wp-admin/" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/75.0.3770.100 Safari/537.36" +192.168.240.1 - - [23/Jul/2019:23:23:05 +0000] "GET /wp-includes/js/wplink.min.js?ver=5.2.2 HTTP/1.1" 200 4280 "http://localhost:8001/wp-admin/" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/75.0.3770.100 Safari/537.36" +192.168.240.1 - - [23/Jul/2019:23:23:05 +0000] "GET /wp-includes/js/jquery/ui/position.min.js?ver=1.11.4 HTTP/1.1" 200 2913 "http://localhost:8001/wp-admin/" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/75.0.3770.100 Safari/537.36" +192.168.240.1 - - [23/Jul/2019:23:23:05 +0000] "GET /wp-includes/js/jquery/ui/menu.min.js?ver=1.11.4 HTTP/1.1" 200 3195 "http://localhost:8001/wp-admin/" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/75.0.3770.100 Safari/537.36" +192.168.240.1 - - [23/Jul/2019:23:23:05 +0000] "GET /wp-includes/js/jquery/ui/autocomplete.min.js?ver=1.11.4 HTTP/1.1" 200 3219 "http://localhost:8001/wp-admin/" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/75.0.3770.100 Safari/537.36" +192.168.240.1 - - [23/Jul/2019:23:23:06 +0000] "GET /wp-content/plugins/woocommerce/assets/fonts/WooCommerce.woff HTTP/1.1" 200 14463 "http://localhost:8001/wp-content/plugins/woocommerce/assets/css/menu.css?ver=3.6.5" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/75.0.3770.100 Safari/537.36" +192.168.240.1 - - [23/Jul/2019:23:23:06 +0000] "GET /wp-includes/js/thickbox/loadingAnimation.gif HTTP/1.1" 200 15525 "http://localhost:8001/wp-admin/" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/75.0.3770.100 Safari/537.36" +192.168.240.1 - - [23/Jul/2019:23:23:06 +0000] "GET /wp-admin/admin-ajax.php?action=wp-compression-test&test=1&_ajax_nonce=373a1c364c&1563924186262 HTTP/1.1" 200 1106 "http://localhost:8001/wp-admin/" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/75.0.3770.100 Safari/537.36" +192.168.240.1 - - [23/Jul/2019:23:23:06 +0000] "GET /favicon.ico HTTP/1.1" 200 228 "http://localhost:8001/wp-admin/" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/75.0.3770.100 Safari/537.36" +192.168.240.1 - - [23/Jul/2019:23:23:06 +0000] "GET /wp-admin/admin-ajax.php?action=wp-compression-test&test=no&_ajax_nonce=373a1c364c&1563924186549 HTTP/1.1" 200 484 "http://localhost:8001/wp-admin/" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/75.0.3770.100 Safari/537.36" +192.168.240.1 - - [23/Jul/2019:23:23:06 +0000] "POST /wp-admin/admin-ajax.php HTTP/1.1" 200 1754 "http://localhost:8001/wp-admin/" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/75.0.3770.100 Safari/537.36" +192.168.240.1 - - [23/Jul/2019:23:23:06 +0000] "GET /wp-admin/admin-ajax.php?action=dashboard-widgets&widget=dashboard_primary&pagenow=dashboard HTTP/1.1" 200 876 "http://localhost:8001/wp-admin/" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/75.0.3770.100 Safari/537.36" +192.168.240.1 - - [23/Jul/2019:23:28:06 +0000] "POST /wp-admin/admin-ajax.php HTTP/1.1" 200 526 "http://localhost:8001/wp-admin/" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/75.0.3770.100 Safari/537.36" +192.168.240.1 - - [23/Jul/2019:23:28:15 +0000] "GET /wp-admin/ HTTP/1.1" 200 19015 "http://localhost:8001/wp-login.php?redirect_to=http%3A%2F%2Flocalhost%3A8001%2Fwp-admin%2F&reauth=1" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/75.0.3770.100 Safari/537.36" +192.168.240.1 - - [23/Jul/2019:23:28:16 +0000] "GET /wp-content/plugins/woocommerce/assets/css/menu.css?ver=3.6.5 HTTP/1.1" 200 1646 "http://localhost:8001/wp-admin/" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/75.0.3770.100 Safari/537.36" +192.168.240.1 - - [23/Jul/2019:23:28:16 +0000] "GET /wp-content/plugins/woocommerce/assets/css/dashboard.css?ver=3.6.5 HTTP/1.1" 200 1513 "http://localhost:8001/wp-admin/" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/75.0.3770.100 Safari/537.36" +192.168.240.1 - - [23/Jul/2019:23:28:16 +0000] "GET /wp-content/plugins/woocommerce/assets/css/activation.css?ver=3.6.5 HTTP/1.1" 200 833 "http://localhost:8001/wp-admin/" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/75.0.3770.100 Safari/537.36" +192.168.240.1 - - [23/Jul/2019:23:28:16 +0000] "GET /wp-content/plugins/woocommerce/assets/js/admin/reports.min.js?ver=3.6.5 HTTP/1.1" 200 1696 "http://localhost:8001/wp-admin/" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/75.0.3770.100 Safari/537.36" +192.168.240.1 - - [23/Jul/2019:23:28:16 +0000] "GET /wp-content/plugins/woocommerce/assets/js/jquery-flot/jquery.flot.min.js?ver=3.6.5 HTTP/1.1" 200 12850 "http://localhost:8001/wp-admin/" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/75.0.3770.100 Safari/537.36" +192.168.240.1 - - [23/Jul/2019:23:28:16 +0000] "GET /wp-content/plugins/woocommerce/assets/js/jquery-flot/jquery.flot.resize.min.js?ver=3.6.5 HTTP/1.1" 200 932 "http://localhost:8001/wp-admin/" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/75.0.3770.100 Safari/537.36" +192.168.240.1 - - [23/Jul/2019:23:28:16 +0000] "GET /wp-content/plugins/woocommerce/assets/js/jquery-flot/jquery.flot.time.min.js?ver=3.6.5 HTTP/1.1" 200 2210 "http://localhost:8001/wp-admin/" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/75.0.3770.100 Safari/537.36" +192.168.240.1 - - [23/Jul/2019:23:28:16 +0000] "GET /wp-content/plugins/woocommerce/assets/js/jquery-flot/jquery.flot.pie.min.js?ver=3.6.5 HTTP/1.1" 200 3268 "http://localhost:8001/wp-admin/" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/75.0.3770.100 Safari/537.36" +192.168.240.1 - - [23/Jul/2019:23:28:16 +0000] "GET /wp-content/plugins/woocommerce/assets/js/jquery-flot/jquery.flot.stack.min.js?ver=3.6.5 HTTP/1.1" 200 995 "http://localhost:8001/wp-admin/" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/75.0.3770.100 Safari/537.36" +192.168.240.1 - - [23/Jul/2019:23:28:16 +0000] "GET /wp-content/plugins/woocommerce/assets/fonts/WooCommerce.woff HTTP/1.1" 304 181 "http://localhost:8001/wp-content/plugins/woocommerce/assets/css/menu.css?ver=3.6.5" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/75.0.3770.100 Safari/537.36" +192.168.240.1 - - [23/Jul/2019:23:28:16 +0000] "GET /favicon.ico HTTP/1.1" 200 228 "http://localhost:8001/wp-admin/" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/75.0.3770.100 Safari/537.36" +192.168.240.1 - - [23/Jul/2019:23:28:19 +0000] "GET /wp-admin/admin.php?page=wp-graphiql/wp-graphiql.php HTTP/1.1" 200 8273 "http://localhost:8001/wp-admin/" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/75.0.3770.100 Safari/537.36" +192.168.240.1 - - [23/Jul/2019:23:28:19 +0000] "GET /wp-content/plugins/wp-graphiql/assets/app/build/static/css/main.820e0136.css?ver=5.2.2 HTTP/1.1" 200 6881 "http://localhost:8001/wp-admin/admin.php?page=wp-graphiql/wp-graphiql.php" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/75.0.3770.100 Safari/537.36" +192.168.240.1 - - [23/Jul/2019:23:28:19 +0000] "GET /wp-content/plugins/wp-graphiql/assets/js/wp-graphiql-helpers.js?ver=5.2.2 HTTP/1.1" 200 590 "http://localhost:8001/wp-admin/admin.php?page=wp-graphiql/wp-graphiql.php" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/75.0.3770.100 Safari/537.36" +192.168.240.1 - - [23/Jul/2019:23:28:19 +0000] "GET /wp-admin/load-scripts.php?c=0&load%5B%5D=jquery-core,jquery-migrate,utils&ver=5.2.2 HTTP/1.1" 200 38219 "http://localhost:8001/wp-admin/admin.php?page=wp-graphiql/wp-graphiql.php" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/75.0.3770.100 Safari/537.36" +192.168.240.1 - - [23/Jul/2019:23:28:19 +0000] "GET /wp-admin/load-scripts.php?c=0&load%5B%5D=hoverIntent,common,admin-bar,svg-painter&ver=5.2.2 HTTP/1.1" 200 9580 "http://localhost:8001/wp-admin/admin.php?page=wp-graphiql/wp-graphiql.php" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/75.0.3770.100 Safari/537.36" +192.168.240.1 - - [23/Jul/2019:23:28:19 +0000] "GET /wp-content/plugins/wp-graphiql/assets/app/build/static/js/main.ef1c9dbe.js?ver=5.2.2 HTTP/1.1" 200 225962 "http://localhost:8001/wp-admin/admin.php?page=wp-graphiql/wp-graphiql.php" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/75.0.3770.100 Safari/537.36" +192.168.240.1 - - [23/Jul/2019:23:28:20 +0000] "GET /favicon.ico HTTP/1.1" 200 228 "http://localhost:8001/wp-admin/admin.php?page=wp-graphiql%2Fwp-graphiql.php" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/75.0.3770.100 Safari/537.36" +192.168.240.1 - - [23/Jul/2019:23:28:20 +0000] "POST /index.php?graphql HTTP/1.1" 200 861872 "http://localhost:8001/wp-admin/admin.php?page=wp-graphiql%2Fwp-graphiql.php" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/75.0.3770.100 Safari/537.36" +127.0.0.1 - - [23/Jul/2019:23:28:27 +0000] "OPTIONS * HTTP/1.0" 200 126 "-" "Apache/2.4.38 (Debian) PHP/7.2.20 (internal dummy connection)" +127.0.0.1 - - [23/Jul/2019:23:28:28 +0000] "OPTIONS * HTTP/1.0" 200 126 "-" "Apache/2.4.38 (Debian) PHP/7.2.20 (internal dummy connection)" +127.0.0.1 - - [23/Jul/2019:23:28:29 +0000] "OPTIONS * HTTP/1.0" 200 126 "-" "Apache/2.4.38 (Debian) PHP/7.2.20 (internal dummy connection)" +192.168.240.1 - - [23/Jul/2019:23:29:20 +0000] "POST /wp-admin/admin-ajax.php HTTP/1.1" 200 526 "http://localhost:8001/wp-admin/admin.php?page=wp-graphiql%2Fwp-graphiql.php" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/75.0.3770.100 Safari/537.36" +192.168.240.1 - - [23/Jul/2019:23:29:26 +0000] "POST /index.php?graphql HTTP/1.1" 200 790 "http://localhost:8001/wp-admin/admin.php?page=wp-graphiql%2Fwp-graphiql.php" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/75.0.3770.100 Safari/537.36" diff --git a/.log/app/error.log b/.log/app/error.log new file mode 100644 index 000000000..489a4120d --- /dev/null +++ b/.log/app/error.log @@ -0,0 +1,16 @@ +[Tue Jul 23 23:08:37.390467 2019] [mpm_prefork:notice] [pid 1] AH00163: Apache/2.4.38 (Debian) PHP/7.2.20 configured -- resuming normal operations +[Tue Jul 23 23:08:37.390627 2019] [core:notice] [pid 1] AH00094: Command line: 'apache2 -D FOREGROUND' +[Tue Jul 23 23:10:33.922144 2019] [php7:warn] [pid 56] [client 127.0.0.1:38488] PHP Warning: ftp_rename() expects parameter 1 to be resource, null given in /var/www/html/wp-admin/includes/class-wp-filesystem-ftpext.php on line 358, referer: http://localhost/wp-cron.php?doing_wp_cron=1563923430.3347780704498291015625 +[Tue Jul 23 23:12:03.788922 2019] [mpm_prefork:notice] [pid 1] AH00169: caught SIGTERM, shutting down +[Tue Jul 23 23:13:37.887310 2019] [mpm_prefork:notice] [pid 1] AH00163: Apache/2.4.38 (Debian) PHP/7.2.20 configured -- resuming normal operations +[Tue Jul 23 23:13:37.887484 2019] [core:notice] [pid 1] AH00094: Command line: 'apache2 -D FOREGROUND' +[Tue Jul 23 23:16:29.271624 2019] [mpm_prefork:notice] [pid 1] AH00169: caught SIGTERM, shutting down +[Tue Jul 23 23:19:51.645435 2019] [mpm_prefork:notice] [pid 1] AH00163: Apache/2.4.38 (Debian) PHP/7.2.20 configured -- resuming normal operations +[Tue Jul 23 23:19:51.645599 2019] [core:notice] [pid 1] AH00094: Command line: 'apache2 -D FOREGROUND' +[Tue Jul 23 23:23:14.963092 2019] [mpm_prefork:notice] [pid 1] AH00169: caught SIGTERM, shutting down +[Tue Jul 23 23:23:38.473319 2019] [mpm_prefork:notice] [pid 1] AH00163: Apache/2.4.38 (Debian) PHP/7.2.20 configured -- resuming normal operations +[Tue Jul 23 23:23:38.473455 2019] [core:notice] [pid 1] AH00094: Command line: 'apache2 -D FOREGROUND' +[Tue Jul 23 23:23:46.698214 2019] [mpm_prefork:notice] [pid 1] AH00169: caught SIGTERM, shutting down +[Tue Jul 23 23:27:38.316447 2019] [mpm_prefork:notice] [pid 1] AH00163: Apache/2.4.38 (Debian) PHP/7.2.20 configured -- resuming normal operations +[Tue Jul 23 23:27:38.349795 2019] [core:notice] [pid 1] AH00094: Command line: 'apache2 -D FOREGROUND' +[Tue Jul 23 23:29:54.327335 2019] [mpm_prefork:notice] [pid 1] AH00169: caught SIGTERM, shutting down diff --git a/.log/app/other_vhosts_access.log b/.log/app/other_vhosts_access.log new file mode 100644 index 000000000..e69de29bb diff --git a/.log/error.log b/.log/error.log new file mode 100644 index 000000000..840b1b360 --- /dev/null +++ b/.log/error.log @@ -0,0 +1,25 @@ +[Tue Jul 23 00:34:59.367015 2019] [mpm_prefork:notice] [pid 1] AH00163: Apache/2.4.38 (Debian) PHP/7.2.20 configured -- resuming normal operations +[Tue Jul 23 00:34:59.367160 2019] [core:notice] [pid 1] AH00094: Command line: 'apache2 -D FOREGROUND' +[Tue Jul 23 00:39:52.575557 2019] [mpm_prefork:notice] [pid 1] AH00169: caught SIGTERM, shutting down +[Tue Jul 23 00:41:30.660723 2019] [mpm_prefork:notice] [pid 1] AH00163: Apache/2.4.38 (Debian) PHP/7.2.20 configured -- resuming normal operations +[Tue Jul 23 00:41:30.702662 2019] [core:notice] [pid 1] AH00094: Command line: 'apache2 -D FOREGROUND' +[Tue Jul 23 00:53:44.867254 2019] [php7:warn] [pid 42] [client 192.168.192.3:38964] PHP Warning: ftp_rename() expects parameter 1 to be resource, null given in /var/www/html/wp-admin/includes/class-wp-filesystem-ftpext.php on line 358, referer: http://wordpress/wp-cron.php?doing_wp_cron=1563843220.4602689743041992187500 +[Tue Jul 23 00:54:31.957084 2019] [mpm_prefork:notice] [pid 1] AH00169: caught SIGTERM, shutting down +[Tue Jul 23 00:58:11.529737 2019] [mpm_prefork:notice] [pid 1] AH00163: Apache/2.4.38 (Debian) PHP/7.2.20 configured -- resuming normal operations +[Tue Jul 23 00:58:11.529912 2019] [core:notice] [pid 1] AH00094: Command line: 'apache2 -D FOREGROUND' +[Tue Jul 23 01:36:34.388618 2019] [mpm_prefork:notice] [pid 1] AH00169: caught SIGTERM, shutting down +[Tue Jul 23 15:47:13.645483 2019] [mpm_prefork:notice] [pid 1] AH00163: Apache/2.4.38 (Debian) PHP/7.2.20 configured -- resuming normal operations +[Tue Jul 23 15:47:13.676461 2019] [core:notice] [pid 1] AH00094: Command line: 'apache2 -D FOREGROUND' +[Tue Jul 23 15:55:24.547799 2019] [mpm_prefork:notice] [pid 1] AH00169: caught SIGTERM, shutting down +[Tue Jul 23 15:59:03.156410 2019] [mpm_prefork:notice] [pid 1] AH00163: Apache/2.4.38 (Debian) PHP/7.2.20 configured -- resuming normal operations +[Tue Jul 23 15:59:03.189905 2019] [core:notice] [pid 1] AH00094: Command line: 'apache2 -D FOREGROUND' +[Tue Jul 23 16:17:38.287007 2019] [mpm_prefork:notice] [pid 1] AH00169: caught SIGTERM, shutting down +[Tue Jul 23 16:18:03.637095 2019] [mpm_prefork:notice] [pid 1] AH00163: Apache/2.4.38 (Debian) PHP/7.2.20 configured -- resuming normal operations +[Tue Jul 23 16:18:03.637232 2019] [core:notice] [pid 1] AH00094: Command line: 'apache2 -D FOREGROUND' +[Tue Jul 23 16:22:44.209266 2019] [mpm_prefork:notice] [pid 1] AH00169: caught SIGTERM, shutting down +[Tue Jul 23 16:40:31.256545 2019] [mpm_prefork:notice] [pid 1] AH00163: Apache/2.4.38 (Debian) PHP/7.2.20 configured -- resuming normal operations +[Tue Jul 23 16:40:31.256714 2019] [core:notice] [pid 1] AH00094: Command line: 'apache2 -D FOREGROUND' +[Tue Jul 23 16:53:30.554674 2019] [mpm_prefork:notice] [pid 1] AH00169: caught SIGTERM, shutting down +[Tue Jul 23 17:20:41.296607 2019] [mpm_prefork:notice] [pid 1] AH00163: Apache/2.4.38 (Debian) PHP/7.2.20 configured -- resuming normal operations +[Tue Jul 23 17:20:41.296757 2019] [core:notice] [pid 1] AH00094: Command line: 'apache2 -D FOREGROUND' +[Tue Jul 23 17:26:22.268374 2019] [mpm_prefork:notice] [pid 1] AH00169: caught SIGTERM, shutting down diff --git a/.log/other_vhosts_access.log b/.log/other_vhosts_access.log new file mode 100644 index 000000000..e69de29bb diff --git a/.log/testing/access.log b/.log/testing/access.log new file mode 100644 index 000000000..80924c626 --- /dev/null +++ b/.log/testing/access.log @@ -0,0 +1,9 @@ +127.0.0.1 - - [23/Jul/2019:22:57:30 +0000] "GET / HTTP/1.1" 200 4621 "-" "Go-http-client/1.1" +127.0.0.1 - - [23/Jul/2019:22:57:50 +0000] "GET /wp-content/plugins/wp-graphql-woocommerce/wp-graphql-woocommerce.php/c3/report/clear HTTP/1.0" 200 192 "-" "-" +127.0.0.1 - - [23/Jul/2019:22:58:09 +0000] "POST /graphql HTTP/1.1" 500 465 "-" "Symfony BrowserKit" +127.0.0.1 - - [23/Jul/2019:23:01:39 +0000] "GET / HTTP/1.1" 200 4621 "-" "Go-http-client/1.1" +127.0.0.1 - - [23/Jul/2019:23:01:57 +0000] "GET /wp-content/plugins/wp-graphql-woocommerce/wp-graphql-woocommerce.php/c3/report/clear HTTP/1.0" 200 192 "-" "-" +127.0.0.1 - - [23/Jul/2019:23:02:16 +0000] "POST /graphql HTTP/1.1" 500 465 "-" "Symfony BrowserKit" +127.0.0.1 - - [23/Jul/2019:23:12:39 +0000] "GET / HTTP/1.1" 200 4621 "-" "Go-http-client/1.1" +127.0.0.1 - - [23/Jul/2019:23:12:59 +0000] "GET /wp-content/plugins/wp-graphql-woocommerce/wp-graphql-woocommerce.php/c3/report/clear HTTP/1.0" 200 192 "-" "-" +127.0.0.1 - - [23/Jul/2019:23:13:19 +0000] "POST /graphql HTTP/1.1" 500 465 "-" "Symfony BrowserKit" diff --git a/.log/testing/error.log b/.log/testing/error.log new file mode 100644 index 000000000..5f9f88d7d --- /dev/null +++ b/.log/testing/error.log @@ -0,0 +1,9 @@ +[Tue Jul 23 22:57:29.268138 2019] [mpm_prefork:notice] [pid 70] AH00163: Apache/2.4.38 (Debian) PHP/7.2.20 configured -- resuming normal operations +[Tue Jul 23 22:57:29.268288 2019] [core:notice] [pid 70] AH00094: Command line: '/usr/sbin/apache2' +[Tue Jul 23 22:58:09.793712 2019] [php7:error] [pid 75] [client 127.0.0.1:38306] PHP Fatal error: Uncaught Codeception\\Exception\\ConfigurationException: Path for output is not writable. Please, set appropriate access mode for output path: /var/www/html/wp-content/plugins/wp-graphql-woocommerce/tests/_output/ in /var/www/html/wp-content/plugins/wp-graphql-woocommerce/vendor/codeception/codeception/src/Codeception/Configuration.php:550\nStack trace:\n#0 /var/www/html/wp-content/plugins/wp-graphql-woocommerce/vendor/codeception/codeception/src/Codeception/Configuration.php(565): Codeception\\Configuration::outputDir()\n#1 /var/www/html/wp-content/plugins/wp-graphql-woocommerce/c3.php(119): Codeception\\Configuration::logDir()\n#2 /var/www/html/wp-content/plugins/wp-graphql-woocommerce/wp-graphql-woocommerce.php(28): require_once('/var/www/html/w...')\n#3 /var/www/html/wp-settings.php(362): include_once('/var/www/html/w...')\n#4 /var/www/html/wp-config.php(78): require_once('/var/www/html/w...')\n#5 /var/www/html/wp-load.php(37): require_once('/var/www/html/w...')\n#6 /var/www/html/wp-blog-header.php(13): require_once( in /var/www/html/wp-content/plugins/wp-graphql-woocommerce/vendor/codeception/codeception/src/Codeception/Configuration.php on line 550 +[Tue Jul 23 23:01:39.201492 2019] [mpm_prefork:notice] [pid 70] AH00163: Apache/2.4.38 (Debian) PHP/7.2.20 configured -- resuming normal operations +[Tue Jul 23 23:01:39.225138 2019] [core:notice] [pid 70] AH00094: Command line: '/usr/sbin/apache2' +[Tue Jul 23 23:02:16.489891 2019] [php7:error] [pid 77] [client 127.0.0.1:38386] PHP Fatal error: Uncaught Error: Class 'Codeception\\Configuration' not found in /var/www/html/wp-content/plugins/wp-graphql-woocommerce/c3.php:100\nStack trace:\n#0 /var/www/html/wp-content/plugins/wp-graphql-woocommerce/wp-graphql-woocommerce.php(28): require_once()\n#1 /var/www/html/wp-settings.php(362): include_once('/var/www/html/w...')\n#2 /var/www/html/wp-config.php(78): require_once('/var/www/html/w...')\n#3 /var/www/html/wp-load.php(37): require_once('/var/www/html/w...')\n#4 /var/www/html/wp-blog-header.php(13): require_once('/var/www/html/w...')\n#5 /var/www/html/index.php(17): require('/var/www/html/w...')\n#6 {main}\n thrown in /var/www/html/wp-content/plugins/wp-graphql-woocommerce/c3.php on line 100 +[Tue Jul 23 23:12:37.992432 2019] [mpm_prefork:notice] [pid 69] AH00163: Apache/2.4.38 (Debian) PHP/7.2.20 configured -- resuming normal operations +[Tue Jul 23 23:12:37.992574 2019] [core:notice] [pid 69] AH00094: Command line: '/usr/sbin/apache2' +[Tue Jul 23 23:13:19.169432 2019] [php7:error] [pid 75] [client 127.0.0.1:38586] PHP Fatal error: Uncaught Error: Class 'Codeception\\Configuration' not found in /var/www/html/wp-content/plugins/wp-graphql-woocommerce/c3.php:100\nStack trace:\n#0 /var/www/html/wp-content/plugins/wp-graphql-woocommerce/wp-graphql-woocommerce.php(28): require_once()\n#1 /var/www/html/wp-settings.php(362): include_once('/var/www/html/w...')\n#2 /var/www/html/wp-config.php(78): require_once('/var/www/html/w...')\n#3 /var/www/html/wp-load.php(37): require_once('/var/www/html/w...')\n#4 /var/www/html/wp-blog-header.php(13): require_once('/var/www/html/w...')\n#5 /var/www/html/index.php(17): require('/var/www/html/w...')\n#6 {main}\n thrown in /var/www/html/wp-content/plugins/wp-graphql-woocommerce/c3.php on line 100 diff --git a/.log/testing/other_vhosts_access.log b/.log/testing/other_vhosts_access.log new file mode 100644 index 000000000..e69de29bb diff --git a/.travis.yml b/.travis.yml index 11daab389..ea657003d 100644 --- a/.travis.yml +++ b/.travis.yml @@ -14,6 +14,7 @@ notifications: branches: only: - develop + - master - release-v0.1.2 - release-v0.2.0 - release-v0.2.1 @@ -29,13 +30,13 @@ env: global: - WP_CORE_DIR: /tmp/wordpress matrix: - - PHP_VERSION=7.3 WP_VERSION=latest COVERAGE=1 + - PHP_VERSION=7.3 WP_VERSION=5.2.2 COVERAGE=1 - PHP_VERSION=7.2 PHPCS=1 - - PHP_VERSION=7.2 WP_VERSION=latest - - PHP_VERSION=7.1 WP_VERSION=latest - - PHP_VERSION=7.0 WP_VERSION=latest + - PHP_VERSION=7.2 WP_VERSION=5.2.2 + - PHP_VERSION=7.1 WP_VERSION=5.2.2 + - PHP_VERSION=7.0 WP_VERSION=5.2.2 - PHP_VERSION=5.6 WP_VERSION=4.9 - - PHP_VERSION=5.6 WP_VERSION=latest DEBUG=1 + - PHP_VERSION=5.6 WP_VERSION=5.2.2 DEBUG=1 - PHP_VERSION=5.6 WP_VERSION=trunk before_install: @@ -63,14 +64,16 @@ before_script: if [ ! -z "$WP_VERSION" ]; then # Install and config Codeception cp .env.dist .env - composer install-wp-tests - travis_retry composer install --no-dev --prefer-source --no-interaction + travis_retry composer install --prefer-source --no-interaction if [ "$COVERAGE" == "1" ]; then # Install Coveralls mkdir -p build/logs COMPOSER_MEMORY_LIMIT=-1 travis_retry composer require php-coveralls/php-coveralls fi - docker-compose build --build-arg PHP_VERSION=$(PHP_VERSION) wpbrowser + docker-compose build \ + --build-arg DESIRED_PHP_VERSION=$(PHP_VERSION) \ + --build-arg DESIRED_WP_VERSION=$(WP_VERSION) \ + woographql ls -al fi # Install PHP CodeSniffer and WPCS. @@ -85,7 +88,9 @@ script: # Execute unit tests with coverage if specified, otherwise without coverage - | if [ ! -z "$WP_VERSION" ]; then - docker-compose run --rm wpbrowser + docker-compose run -e SUITE=functional -e COVERAGE=${COVERAGE:-0} testing --rm testing --scale app=0 + docker-compose run -e SUITE=acceptance -e COVERAGE=${COVERAGE:-0} testing --rm testing --scale app=0 + docker-compose run -e SUITE=wpunit -e COVERAGE=${COVERAGE:-0} testing --rm testing --scale app=0 fi - | if [ "$PHPCS" == "1" ]; then diff --git a/Dockerfile b/Dockerfile index 4d621ebb7..a767813ae 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,35 +1,29 @@ -ARG PHP_VERSION -FROM php:${PHP_VERSION:-7.2}-apache-stretch +############################################################################### +# Pre-configured WordPress Installation w/ WooCommerce, WPGraphQL, WooGraphQL # +# For testing only, use in production not recommended. # +############################################################################### + +# Using the 'DESIRED_' prefix to avoid confusion with environment variables of the same name. +ARG DESIRED_WP_VERSION +ARG DESIRED_PHP_VERSION + +FROM wordpress:${DESIRED_WP_VERSION}-php${DESIRED_PHP_VERSION}-apache + +LABEL author=kidunot89 +LABEL author_uri=https://github.com/kidunot89 SHELL [ "/bin/bash", "-c" ] -# Install required system packages +# Install system packages RUN apt-get update && \ apt-get -y install \ - # WordPress dependencies - libjpeg-dev \ - libpng-dev \ - mysql-client \ # CircleCI depedencies git \ ssh \ tar \ gzip \ - wget - -# Install php extensions -RUN docker-php-ext-install \ - bcmath \ - zip \ - gd \ - pdo_mysql \ - mysqli \ - opcache \ - pcov \ - && docker-php-ext-enable pcov - -# Configure php -RUN echo "date.timezone = UTC" >> /usr/local/etc/php/php.ini + wget \ + mariadb-client # Install Dockerize ENV DOCKERIZE_VERSION v0.6.1 @@ -37,47 +31,29 @@ RUN wget https://github.com/jwilder/dockerize/releases/download/$DOCKERIZE_VERSI && tar -C /usr/local/bin -xzvf dockerize-linux-amd64-$DOCKERIZE_VERSION.tar.gz \ && rm dockerize-linux-amd64-$DOCKERIZE_VERSION.tar.gz +# Install WP-CLI +RUN curl -O https://raw.githubusercontent.com/wp-cli/builds/gh-pages/phar/wp-cli.phar \ + && chmod +x wp-cli.phar \ + && mv wp-cli.phar /usr/local/bin/wp -# Install composer -ENV COMPOSER_ALLOW_SUPERUSER=1 - -RUN curl -sS https://getcomposer.org/installer | php -- \ - --filename=composer \ - --install-dir=/usr/local/bin - -# Install tool to speed up composer installations -RUN composer global require --optimize-autoloader \ - "hirak/prestissimo" - -# Install wp-browser and php-coveralls globally -RUN composer global require \ - phpunit/phpunit:8.1 \ - lucatume/wp-browser:^2.2 \ - league/factory-muffin:^3.0 \ - league/factory-muffin-faker:^2.0 \ - php-coveralls/php-coveralls - -# Add composer global binaries to PATH -ENV PATH "$PATH:~/.composer/vendor/bin" - -# Set up WordPress config +# Set project environmental variables ENV WP_ROOT_FOLDER="/var/www/html" -ENV WP_URL="http://localhost" -ENV WP_DOMAIN="localhost" -ENV WP_TABLE_PREFIX="wp_" -ENV ADMIN_EMAIL="admin@wordpress.local" -ENV ADMIN_USERNAME="admin" -ENV ADMIN_PASSWORD="password" +ENV WORDPRESS_DB_HOST=${DB_HOST} +ENV WORDPRESS_DB_USER=${DB_USER} +ENV WORDPRESS_DB_PASSWORD=${DB_PASSWORD} +ENV WORDPRESS_DB_NAME=${DB_NAME} +ENV PLUGINS_DIR="${WP_ROOT_FOLDER}/wp-content/plugins" +ENV PROJECT_DIR="${PLUGINS_DIR}/wp-graphql-woocommerce" -# Set up wp-browser / codeception -WORKDIR /var/www/config -COPY codeception.docker.yml codeception.dist.yml +# Remove exec statement from base entrypoint script. +RUN sed -i '$d' /usr/local/bin/docker-entrypoint.sh # Set up Apache -RUN echo 'ServerName localhost' >> /etc/apache2/apache2.conf +RUN echo 'ServerName localhost' >> /etc/apache2/apache2.conf # Set up entrypoint WORKDIR /var/www/html -COPY bin/entrypoint.sh /entrypoint.sh -RUN chmod 755 /entrypoint.sh -ENTRYPOINT ["/entrypoint.sh"] \ No newline at end of file +COPY bin/entrypoint.sh /usr/local/bin/app-entrypoint.sh +RUN chmod 755 /usr/local/bin/app-entrypoint.sh +ENTRYPOINT ["app-entrypoint.sh"] +CMD ["apache2-foreground"] \ No newline at end of file diff --git a/Dockerfile.tester b/Dockerfile.tester new file mode 100644 index 000000000..0092e6054 --- /dev/null +++ b/Dockerfile.tester @@ -0,0 +1,51 @@ +############################################################################ +# Container for running Codeception tests on a WooGraphQL Docker instance. # +############################################################################ + +FROM kidunot89/woographql-app + +LABEL author=kidunot89 +LABEL author_uri=https://github.com/kidunot89 + +SHELL [ "/bin/bash", "-c" ] + +# Install php extensions +RUN docker-php-ext-install pdo_mysql + +# Install pcov +RUN pecl install pcov \ + && docker-php-ext-enable pcov + +# Install composer +ENV COMPOSER_ALLOW_SUPERUSER=1 + +RUN curl -sS https://getcomposer.org/installer | php -- \ + --filename=composer \ + --install-dir=/usr/local/bin + +# Install tool to speed up composer installations +RUN composer global require --optimize-autoloader \ + "hirak/prestissimo" + +# Install wp-browser globally +RUN composer global require \ + phpunit/phpunit:8.1 \ + lucatume/wp-browser:^2.2 \ + league/factory-muffin:^3.0 \ + league/factory-muffin-faker:^2.0 + +# Add composer global binaries to PATH +ENV PATH "$PATH:~/.composer/vendor/bin" + +# Set up wp-browser / codeception +WORKDIR /var/www/config +COPY codeception.docker.yml codeception.dist.yml + +# Remove exec statement from base entrypoint script. +RUN sed -i '$d' /usr/local/bin/app-entrypoint.sh + +# Set up entrypoint +WORKDIR /var/www/html +COPY bin/testing-entrypoint.sh /usr/local/bin/testing-entrypoint.sh +RUN chmod 755 /usr/local/bin/testing-entrypoint.sh +ENTRYPOINT ["testing-entrypoint.sh"] \ No newline at end of file diff --git a/bin/entrypoint.sh b/bin/entrypoint.sh index 94bb99129..5fb54cacc 100644 --- a/bin/entrypoint.sh +++ b/bin/entrypoint.sh @@ -1,70 +1,70 @@ #!/bin/bash -# Ensure mysql is loaded -dockerize -wait tcp://$DB_HOST:3306 -timeout 1m - -# Ensure Apache is running -service apache2 start - -# Enable Mod Rewrite and restart Apache -a2enmod rewrite -service apache2 restart - -# Link codeception config if not yet linked -if [ ! -e codeception.dist.yml ]; then - ln -s /var/www/config/codeception.dist.yml /var/www/html/codeception.dist.yml -fi +# Run WordPress docker entrypoint. +. docker-entrypoint.sh 'apache2' -# Download WordPress -wp core download \ - --path=/var/www/html \ - --quiet \ - --allow-root +# Ensure mysql is loaded +dockerize -wait tcp://${DB_HOST}:${DB_HOST_PORT:-3306} -timeout 1m # Config WordPress -wp config create \ - --path=/var/www/html \ - --dbname="$DB_NAME" \ - --dbuser="$DB_USER" \ - --dbpass="$DB_PASSWORD" \ - --dbhost="$DB_HOST" \ - --dbprefix="$WP_TABLE_PREFIX" \ - --skip-check \ - --quiet \ - --allow-root +if [ ! -f "${WP_ROOT_FOLDER}/wp-config.php" ]; then + wp config create \ + --path="${WP_ROOT_FOLDER}" \ + --dbname="${DB_NAME}" \ + --dbuser="${DB_USER}" \ + --dbpass="${DB_PASSWORD}" \ + --dbhost="${DB_HOST}" \ + --dbprefix="${WP_TABLE_PREFIX}" \ + --skip-check \ + --quiet \ + --allow-root +fi # Install WP if not yet installed if ! $( wp core is-installed --allow-root ); then wp core install \ - --path=/var/www/html \ - --url=$WP_URL \ + --path="${WP_ROOT_FOLDER}" \ + --url="${WP_URL}" \ --title='Test' \ - --admin_user=$ADMIN_USERNAME \ - --admin_password=$ADMIN_PASSWORD \ - --admin_email=$ADMIN_EMAIL \ + --admin_user="${ADMIN_USERNAME}" \ + --admin_password="${ADMIN_PASSWORD}" \ + --admin_email="${ADMIN_EMAIL}" \ --allow-root fi -mkdir -p /var/www/html/wp-content +# Install and activate WooCommerce +if [ ! -f "${PLUGINS_DIR}/woocommerce/woocommerce.php" ]; then + wp plugin install woocommerce --activate --allow-root +fi + +# Install and activate WPGraphQL +if [ ! -f "${PLUGINS_DIR}/wp-graphql/wp-graphql.php" ]; then + wp plugin install \ + https://github.com/wp-graphql/wp-graphql/archive/master.zip \ + --activate --allow-root +fi + +# Install and activate WPGraphQL JWT Authentication +if [ ! -f "${PLUGINS_DIR}/wp-graphql-jwt-authentication/wp-graphql-jwt-authentication.php" ]; then + wp plugin install \ + https://github.com/wp-graphql/wp-graphql-jwt-authentication/archive/master.zip \ + --activate --allow-root +fi + +if [ ! -z "$INCLUDE_WPGRAPHIQL" ]; then + if [ ! -f "${PLUGINS_DIR}/wp-graphiql/wp-graphiql.php" ]; then + wp plugin install \ + https://github.com/wp-graphql/wp-graphiql/archive/master.zip \ + --activate --allow-root + fi +fi + +# Activate WooGraphQL +wp plugin activate wp-graphql-woocommerce --allow-root -# Build Code coverage log directory -mkdir -p /var/www/html/build/logs +# Set pretty permalinks. +wp rewrite structure '/%year%/%monthnum%/%postname%/' --allow-root -wp db export \ - /var/www/html/wp-content/mysql.sql \ - --allow-root +wp db export "${PROJECT_DIR}/tests/_data/dump.sql" --allow-root -# Run the tests -if [ "$COVERAGE" == "1" ]; then - codecept run acceptance --coverage --coverage-xml - codecept run functional --coverage --coverage-xml - codecept run wpunit --coverage --coverage-xml -elif [ "$DEBUG" == "1" ]; then - codecept run acceptance --debug - codecept run functional --debug - codecept run wpunit --debug -else - codecept run acceptance - codecept run functional - codecept run wpunit -fi \ No newline at end of file +exec "$@" \ No newline at end of file diff --git a/bin/install-wp-tests.sh b/bin/install-wp-tests.sh index 468bad584..f072d796a 100755 --- a/bin/install-wp-tests.sh +++ b/bin/install-wp-tests.sh @@ -33,12 +33,7 @@ fi if [ -z "$SKIP_DB_CREATE" ]; then SKIP_DB_CREATE=false fi -if [[ -z "$TEST_SITE_WP_URL" ]]; then - echo "TEST_SITE_WP_URL not found" - print_usage_instruction -else - DB_NAME=$TEST_DB_NAME -fi + WP_VERSION=${WP_VERSION-latest} TMPDIR=${TMPDIR-/tmp} TMPDIR=$(echo $TMPDIR | sed -e "s/\/$//") @@ -186,7 +181,7 @@ install_db() { configure_wordpress() { cd $WP_CORE_DIR wp config create --dbname="$DB_NAME" --dbuser="$DB_USER" --dbpass="$DB_PASS" --dbhost="$DB_HOST" --skip-check --force=true - wp core install --url="$TEST_SITE_WP_URL" --title="WPGraphQL WooCommerce Tests" --admin_user=admin --admin_password=password --admin_email=admin@wp.test + wp core install --url=wp.test --title="WPGraphQL WooCommerce Tests" --admin_user=admin --admin_password=password --admin_email=admin@wp.test wp rewrite structure '/%year%/%monthnum%/%postname%/' } diff --git a/bin/testing-entrypoint.sh b/bin/testing-entrypoint.sh new file mode 100644 index 000000000..c63df5ef7 --- /dev/null +++ b/bin/testing-entrypoint.sh @@ -0,0 +1,35 @@ +#!/bin/bash + +# Run app entrypoint script. +. app-entrypoint.sh + +# Ensure Apache is running +service apache2 start + +# Ensure everything is loaded +dockerize \ + -wait tcp://${TEST_DB_HOST}:${TEST_DB_HOST_PORT:-3306} \ + -wait http://localhost \ + -timeout 1m + + +# Download c3 for testing. +if [ ! -f "${PROJECT_DIR}/c3.php" ]; then + curl -L 'https://raw.github.com/Codeception/c3/2.0/c3.php' > "${PROJECT_DIR}/c3.php" +fi + +# Link codeception config if not yet linked +if [ ! -e codeception.dist.yml ]; then + ln -s /var/www/config/codeception.dist.yml /var/www/html/codeception.dist.yml +fi + +# Run the tests +if [ "$COVERAGE" == "1" ]; then + codecept run ${SUITE} --debug --coverage --coverage-xml +elif [ "$DEBUG" == "1" ]; then + codecept run ${SUITE} --debug +else + codecept run ${SUITE} +fi + +exec "$@" \ No newline at end of file diff --git a/codeception.docker.yml b/codeception.docker.yml index 461c9a1df..ac2aa145f 100644 --- a/codeception.docker.yml +++ b/codeception.docker.yml @@ -1,6 +1,6 @@ paths: tests: tests - output: tests/_output + log: tests/_output data: tests/_data support: tests/_support envs: tests/_envs @@ -12,7 +12,7 @@ settings: memory_limit: 1024M coverage: enabled: true - remote: false + c3_url: http://localhost/wp-content/plugins/wp-graphql-woocommerce/wp-graphql-woocommerce.php whitelist: include: - wp-content/plugins/wp-graphql-woocommerce/wp-graphql-woocommerce.php @@ -33,16 +33,16 @@ extensions: modules: config: WPDb: - dsn: 'mysql:host=%DB_HOST%;dbname=%DB_NAME%' - user: '%DB_USER%' - password: '%DB_PASSWORD%' + dsn: 'mysql:host=%TEST_DB_HOST%;dbname=%TEST_DB_NAME%' + user: '%TEST_DB_USER%' + password: '%TEST_DB_PASSWORD%' populator: 'mysql -u $user -p$password -h $host $dbname < $dump' dump: 'tests/_data/dump.sql' populate: true cleanup: true - url: '%WP_URL%' + url: 'http://localhost' urlReplacement: true - tablePrefix: '%WP_TABLE_PREFIX%' + tablePrefix: '%TEST_WP_TABLE_PREFIX%' WPBrowser: url: 'http://localhost' wpRootFolder: '%WP_ROOT_FOLDER%' @@ -59,15 +59,15 @@ modules: themes: '/wp-content/themes' uploads: '/wp-content/uploads' WPLoader: - wpRootFolder: "%WP_ROOT_FOLDER%" - dbName: "%DB_NAME%" - dbHost: "%DB_HOST%" - dbUser: "%DB_USER%" - dbPassword: "%DB_PASSWORD%" - tablePrefix: "%WP_TABLE_PREFIX%" - domain: "%WP_DOMAIN%" - adminEmail: "%ADMIN_EMAIL%" - title: "Test" + wpRootFolder: '%WP_ROOT_FOLDER%' + dbName: 'wordpress_tests' + dbHost: 'testing-db' + dbUser: '%DB_USER%' + dbPassword: '%DB_PASSWORD%' + tablePrefix: '%WP_TABLE_PREFIX%' + domain: '%WP_DOMAIN%' + adminEmail: '%ADMIN_EMAIL%' + title: 'Test' plugins: ['woocommerce/woocommerce.php', 'wp-graphql/wp-graphql.php', 'wp-graphql-woocommerce/wp-graphql-woocommerce.php'] activatePlugins: ['woocommerce/woocommerce.php', 'wp-graphql/wp-graphql.php', 'wp-graphql-woocommerce/wp-graphql-woocommerce.php'] - configFile: "tests/_data/config.php" + configFile: 'tests/_data/config.php' diff --git a/codeception.yml b/codeception.yml index 25924fa0c..16e28dcb4 100644 --- a/codeception.yml +++ b/codeception.yml @@ -1,6 +1,6 @@ paths: tests: tests - output: tests/_output + log: tests/_output data: tests/_data support: tests/_support envs: tests/_envs @@ -10,6 +10,7 @@ settings: memory_limit: 1024M coverage: enabled: true + remote: true whitelist: include: - wp-graphql-woocommerce.php @@ -32,26 +33,26 @@ params: modules: config: WPDb: - dsn: 'mysql:host=%TEST_SITE_DB_HOST%;dbname=%TEST_SITE_DB_NAME%' - user: '%TEST_SITE_DB_USER%' - password: '%TEST_SITE_DB_PASSWORD%' + dsn: 'mysql:host=%TEST_DB_HOST%;dbname=%DB_NAME%' + user: '%DB_USER%' + password: '%DB_PASSWORD%' dump: 'tests/_data/dump.sql' #import the dump before the tests; this means the test site database will be repopulated before the tests. populate: true # re-import the dump between tests; this means the test site database will be repopulated between the tests. cleanup: true waitlock: 0 - url: '%TEST_SITE_WP_URL%' + url: '%WP_URL%' urlReplacement: true #replace the hardcoded dump URL with the one above - tablePrefix: '%TEST_SITE_TABLE_PREFIX%' + tablePrefix: '%WP_TABLE_PREFIX%' WPBrowser: - url: '%TEST_SITE_WP_URL%' - adminUsername: '%TEST_SITE_ADMIN_USERNAME%' - adminPassword: '%TEST_SITE_ADMIN_PASSWORD%' - adminPath: '%TEST_SITE_WP_ADMIN_PATH%' + url: '%WP_URL%' + adminUsername: '%ADMIN_USERNAME%' + adminPassword: '%ADMIN_PASSWORD%' + adminPath: '%ADMIN_PATH%' REST: depends: WPBrowser - url: '%TEST_SITE_WP_URL%' + url: '%WP_URL%' WPFilesystem: wpRootFolder: '%WP_ROOT_FOLDER%' plugins: '/wp-content/plugins' @@ -59,14 +60,14 @@ modules: themes: '/wp-content/themes' uploads: '/wp-content/uploads' WPLoader: - wpRootFolder: "%WP_ROOT_FOLDER%" + wpRootFolder: "%TEST_WP_ROOT_FOLDER%" dbName: "%TEST_DB_NAME%" dbHost: "%TEST_DB_HOST%" dbUser: "%TEST_DB_USER%" dbPassword: "%TEST_DB_PASSWORD%" tablePrefix: "%TEST_TABLE_PREFIX%" - domain: "%TEST_SITE_WP_DOMAIN%" - adminEmail: "%TEST_SITE_ADMIN_EMAIL%" + domain: "%TEST_WP_DOMAIN%" + adminEmail: "%TEST_ADMIN_EMAIL%" title: "Test" plugins: ['woocommerce/woocommerce.php', 'wp-graphql/wp-graphql.php', 'wp-graphql-woocommerce/wp-graphql-woocommerce.php'] activatePlugins: ['woocommerce/woocommerce.php', 'wp-graphql/wp-graphql.php', 'wp-graphql-woocommerce/wp-graphql-woocommerce.php'] diff --git a/docker-compose.yml b/docker-compose.yml index 626b48fc8..7c49fe039 100644 --- a/docker-compose.yml +++ b/docker-compose.yml @@ -1,33 +1,78 @@ version: '3.3' services: - - wpbrowser: - build: . - image: kidunot89/wp-browser - links: - - db:mysql + app: + depends_on: + - app_db + build: + context: . + args: + DESIRED_PHP_VERSION: "${PHP_VERSION:-7.2}" + DESIRED_WP_VERSION: "${WP_VERSION:-5.2.2}" + image: kidunot89/woographql-app volumes: - - '$WP_CORE_DIR/wp-content:/var/www/html/wp-content' - - './tests:/var/www/html/tests' - - './codeception.docker.yml:/var/www/config/codeception.dist.yml' - '.:/var/www/html/wp-content/plugins/wp-graphql-woocommerce' + - './.log/app:/var/log/apache2' + env_file: .env environment: - - DB_NAME=wordpress - - DB_HOST=db - - DB_USER=wordpress - - DB_PASSWORD=wordpress - - WPGRAPHQL_WOOCOMMERCE_AUTOLOAD=1 - - COVERAGE - - DEBUG + WP_URL: 'http://localhost:8001' + WP_DOMAIN: 'localhost:8001' + DB_HOST: app_db + INCLUDE_WPGRAPHIQL: 1 ports: - - 8080:80 + - '8001:80' + networks: + local: - db: + app_db: image: mysql:5.7 - restart: always environment: MYSQL_ROOT_PASSWORD: root MYSQL_DATABASE: wordpress MYSQL_USER: wordpress - MYSQL_PASSWORD: wordpress \ No newline at end of file + MYSQL_PASSWORD: wordpress + ports: + - '3306' + networks: + testing: + local: + + testing: + depends_on: + - app_db + - testing_db + build: + context: . + dockerfile: Dockerfile.tester + image: kidunot89/woographql-testing + volumes: + - '.:/var/www/html/wp-content/plugins/wp-graphql-woocommerce' + - './tests:/var/www/html/tests' + - './.log/testing:/var/log/apache2' + env_file: .env + environment: + TEST_DB_HOST: testing_db + TEST_DB_USER: wordpress + TEST_DB_PASSWORD: wordpress + DB_HOST: app_db + DB_USER: wordpress + DB_PASSWORD: wordpress + WPGRAPHQL_WOOCOMMERCE_AUTOLOAD: 1 + networks: + testing: + + testing_db: + image: mysql:5.7 + environment: + MYSQL_ROOT_PASSWORD: root + MYSQL_DATABASE: wordpress_tests + MYSQL_USER: wordpress + MYSQL_PASSWORD: wordpress + ports: + - '3306' + networks: + testing: + +networks: + local: + testing: \ No newline at end of file diff --git a/tests/functional/QLSessionHandlerCest.php b/tests/functional/QLSessionHandlerCest.php index 88be09082..53464420a 100644 --- a/tests/functional/QLSessionHandlerCest.php +++ b/tests/functional/QLSessionHandlerCest.php @@ -4,25 +4,6 @@ class QLSessionHandlerCest { private $product_id; public function _before( FunctionalTester $I ) { - // Activate plugins - $I->loginAsAdmin(); - $I->amOnPluginsPage(); - $I->activatePlugin( - array( - 'woocommerce', - 'wp-graphql', - 'wpgraphql-jwt-authentication', - 'wp-graphql-woocommerce', - ) - ); - $I->seePluginActivated( 'woocommerce' ); - $I->seePluginActivated( 'wp-graphql' ); - $I->seePluginActivated( 'wpgraphql-jwt-authentication' ); - $I->seePluginActivated( 'wp-graphql-woocommerce' ); - $I->amOnAdminPage('options-permalink.php'); - $I->click('#submit'); - $I->amOnPage( '/' ); - // Create Product $this->product_id = $I->havePostInDatabase( array( 'post_type' => 'product', diff --git a/wp-graphql-woocommerce.php b/wp-graphql-woocommerce.php index 8c4924c01..3ce42aa65 100644 --- a/wp-graphql-woocommerce.php +++ b/wp-graphql-woocommerce.php @@ -19,8 +19,6 @@ // Exit if accessed directly. defined( 'ABSPATH' ) || exit; -defined( 'GRAPHQL_DEBUG' ) || define( 'GRAPHQL_DEBUG', true ); - /** * If the codeception remote coverage file exists, require it. * @@ -36,7 +34,7 @@ function wp_graphql_woocommerce_constants() { // Plugin version. if ( ! defined( 'WPGRAPHQL_WOOCOMMERCE_VERSION' ) ) { - define( 'WPGRAPHQL_WOOCOMMERCE_VERSION', '0.0.1' ); + define( 'WPGRAPHQL_WOOCOMMERCE_VERSION', '0.2.1' ); } // Plugin Folder Path. if ( ! defined( 'WPGRAPHQL_WOOCOMMERCE_PLUGIN_DIR' ) ) { From 0865b03548443db95cc60e83374e24f1221ecc4e Mon Sep 17 00:00:00 2001 From: Geoff Taylor Date: Wed, 24 Jul 2019 12:23:28 -0400 Subject: [PATCH 13/24] More docker refactoring --- .gitignore | 2 +- .log/access.log | 917 --------------------------- .log/app/access.log | 81 --- .log/app/error.log | 16 - .log/app/other_vhosts_access.log | 0 .log/error.log | 25 - .log/other_vhosts_access.log | 0 .log/testing/access.log | 9 - .log/testing/error.log | 9 - .log/testing/other_vhosts_access.log | 0 .travis.yml | 1 - Dockerfile.tester | 6 +- docker-compose.yml | 12 +- 13 files changed, 11 insertions(+), 1067 deletions(-) delete mode 100644 .log/access.log delete mode 100644 .log/app/access.log delete mode 100644 .log/app/error.log delete mode 100644 .log/app/other_vhosts_access.log delete mode 100644 .log/error.log delete mode 100644 .log/other_vhosts_access.log delete mode 100644 .log/testing/access.log delete mode 100644 .log/testing/error.log delete mode 100644 .log/testing/other_vhosts_access.log diff --git a/.gitignore b/.gitignore index a5dc3d9c9..6a9e78f83 100644 --- a/.gitignore +++ b/.gitignore @@ -26,4 +26,4 @@ phpunit.xml docker-output composer.lock c3.php -.logs/ \ No newline at end of file +.log/ \ No newline at end of file diff --git a/.log/access.log b/.log/access.log deleted file mode 100644 index f09db93af..000000000 --- a/.log/access.log +++ /dev/null @@ -1,917 +0,0 @@ -192.168.160.4 - - [23/Jul/2019:00:35:00 +0000] "GET /graphql HTTP/1.1" 404 9003 "-" "Go-http-client/1.1" -192.168.160.4 - - [23/Jul/2019:00:35:01 +0000] "GET /graphql HTTP/1.1" 404 9003 "-" "Go-http-client/1.1" -192.168.160.4 - - [23/Jul/2019:00:35:02 +0000] "GET /graphql HTTP/1.1" 404 9003 "-" "Go-http-client/1.1" -192.168.160.4 - - [23/Jul/2019:00:35:03 +0000] "GET /graphql HTTP/1.1" 404 9003 "-" "Go-http-client/1.1" -192.168.160.4 - - [23/Jul/2019:00:35:04 +0000] "GET /graphql HTTP/1.1" 404 9003 "-" "Go-http-client/1.1" -192.168.160.4 - - [23/Jul/2019:00:35:05 +0000] "GET /graphql HTTP/1.1" 404 9003 "-" "Go-http-client/1.1" -192.168.160.4 - - [23/Jul/2019:00:35:06 +0000] "GET /graphql HTTP/1.1" 404 9003 "-" "Go-http-client/1.1" -192.168.160.4 - - [23/Jul/2019:00:35:07 +0000] "GET /graphql HTTP/1.1" 404 9003 "-" "Go-http-client/1.1" -192.168.160.4 - - [23/Jul/2019:00:35:09 +0000] "GET /graphql HTTP/1.1" 404 9003 "-" "Go-http-client/1.1" -192.168.160.4 - - [23/Jul/2019:00:35:10 +0000] "GET /graphql HTTP/1.1" 404 9003 "-" "Go-http-client/1.1" -192.168.160.4 - - [23/Jul/2019:00:35:11 +0000] "GET /graphql HTTP/1.1" 404 9003 "-" "Go-http-client/1.1" -192.168.160.4 - - [23/Jul/2019:00:35:12 +0000] "GET /graphql HTTP/1.1" 404 9003 "-" "Go-http-client/1.1" -192.168.160.4 - - [23/Jul/2019:00:35:13 +0000] "GET /graphql HTTP/1.1" 404 9003 "-" "Go-http-client/1.1" -192.168.160.4 - - [23/Jul/2019:00:35:14 +0000] "GET /graphql HTTP/1.1" 404 9003 "-" "Go-http-client/1.1" -192.168.160.4 - - [23/Jul/2019:00:35:15 +0000] "GET /graphql HTTP/1.1" 404 9003 "-" "Go-http-client/1.1" -192.168.160.4 - - [23/Jul/2019:00:35:16 +0000] "GET /graphql HTTP/1.1" 404 9003 "-" "Go-http-client/1.1" -192.168.160.4 - - [23/Jul/2019:00:35:17 +0000] "GET /graphql HTTP/1.1" 404 9003 "-" "Go-http-client/1.1" -192.168.160.4 - - [23/Jul/2019:00:35:18 +0000] "GET /graphql HTTP/1.1" 404 9003 "-" "Go-http-client/1.1" -192.168.160.4 - - [23/Jul/2019:00:35:19 +0000] "GET /graphql HTTP/1.1" 404 9003 "-" "Go-http-client/1.1" -192.168.160.4 - - [23/Jul/2019:00:35:20 +0000] "GET /graphql HTTP/1.1" 404 9003 "-" "Go-http-client/1.1" -192.168.160.4 - - [23/Jul/2019:00:35:21 +0000] "GET /graphql HTTP/1.1" 404 9003 "-" "Go-http-client/1.1" -192.168.160.4 - - [23/Jul/2019:00:35:22 +0000] "GET /graphql HTTP/1.1" 404 9003 "-" "Go-http-client/1.1" -192.168.160.4 - - [23/Jul/2019:00:35:23 +0000] "GET /graphql HTTP/1.1" 404 9003 "-" "Go-http-client/1.1" -192.168.160.4 - - [23/Jul/2019:00:35:24 +0000] "GET /graphql HTTP/1.1" 404 9003 "-" "Go-http-client/1.1" -192.168.160.4 - - [23/Jul/2019:00:35:25 +0000] "GET /graphql HTTP/1.1" 404 9003 "-" "Go-http-client/1.1" -192.168.160.4 - - [23/Jul/2019:00:35:26 +0000] "GET /graphql HTTP/1.1" 404 9003 "-" "Go-http-client/1.1" -192.168.160.4 - - [23/Jul/2019:00:35:27 +0000] "GET /graphql HTTP/1.1" 404 9003 "-" "Go-http-client/1.1" -192.168.160.4 - - [23/Jul/2019:00:35:28 +0000] "GET /graphql HTTP/1.1" 404 9003 "-" "Go-http-client/1.1" -192.168.160.4 - - [23/Jul/2019:00:35:29 +0000] "GET /graphql HTTP/1.1" 404 9003 "-" "Go-http-client/1.1" -192.168.160.4 - - [23/Jul/2019:00:35:30 +0000] "GET /graphql HTTP/1.1" 404 9003 "-" "Go-http-client/1.1" -192.168.160.4 - - [23/Jul/2019:00:35:32 +0000] "GET /graphql HTTP/1.1" 404 9003 "-" "Go-http-client/1.1" -192.168.160.4 - - [23/Jul/2019:00:35:33 +0000] "GET /graphql HTTP/1.1" 404 9003 "-" "Go-http-client/1.1" -192.168.160.4 - - [23/Jul/2019:00:35:34 +0000] "GET /graphql HTTP/1.1" 404 9003 "-" "Go-http-client/1.1" -192.168.160.4 - - [23/Jul/2019:00:35:35 +0000] "GET /graphql HTTP/1.1" 404 9003 "-" "Go-http-client/1.1" -192.168.160.4 - - [23/Jul/2019:00:35:36 +0000] "GET /graphql HTTP/1.1" 404 9003 "-" "Go-http-client/1.1" -192.168.160.4 - - [23/Jul/2019:00:35:37 +0000] "GET /graphql HTTP/1.1" 404 9003 "-" "Go-http-client/1.1" -192.168.160.4 - - [23/Jul/2019:00:35:38 +0000] "GET /graphql HTTP/1.1" 404 9003 "-" "Go-http-client/1.1" -192.168.160.4 - - [23/Jul/2019:00:35:39 +0000] "GET /graphql HTTP/1.1" 404 9003 "-" "Go-http-client/1.1" -192.168.160.4 - - [23/Jul/2019:00:35:40 +0000] "GET /graphql HTTP/1.1" 404 9003 "-" "Go-http-client/1.1" -192.168.160.4 - - [23/Jul/2019:00:35:41 +0000] "GET /graphql HTTP/1.1" 404 9003 "-" "Go-http-client/1.1" -192.168.160.4 - - [23/Jul/2019:00:35:42 +0000] "GET /graphql HTTP/1.1" 404 9003 "-" "Go-http-client/1.1" -192.168.160.4 - - [23/Jul/2019:00:35:43 +0000] "GET /graphql HTTP/1.1" 404 9003 "-" "Go-http-client/1.1" -192.168.160.4 - - [23/Jul/2019:00:35:44 +0000] "GET /graphql HTTP/1.1" 404 9003 "-" "Go-http-client/1.1" -192.168.160.4 - - [23/Jul/2019:00:35:45 +0000] "GET /graphql HTTP/1.1" 404 9003 "-" "Go-http-client/1.1" -192.168.160.4 - - [23/Jul/2019:00:35:46 +0000] "GET /graphql HTTP/1.1" 404 9003 "-" "Go-http-client/1.1" -192.168.160.4 - - [23/Jul/2019:00:35:47 +0000] "GET /graphql HTTP/1.1" 404 9003 "-" "Go-http-client/1.1" -192.168.160.4 - - [23/Jul/2019:00:35:48 +0000] "GET /graphql HTTP/1.1" 404 9003 "-" "Go-http-client/1.1" -192.168.160.4 - - [23/Jul/2019:00:35:49 +0000] "GET /graphql HTTP/1.1" 404 9003 "-" "Go-http-client/1.1" -192.168.160.4 - - [23/Jul/2019:00:35:50 +0000] "GET /graphql HTTP/1.1" 404 9003 "-" "Go-http-client/1.1" -192.168.160.4 - - [23/Jul/2019:00:35:51 +0000] "GET /graphql HTTP/1.1" 404 9003 "-" "Go-http-client/1.1" -192.168.160.4 - - [23/Jul/2019:00:35:52 +0000] "GET /graphql HTTP/1.1" 404 9003 "-" "Go-http-client/1.1" -192.168.160.4 - - [23/Jul/2019:00:35:53 +0000] "GET /graphql HTTP/1.1" 404 9003 "-" "Go-http-client/1.1" -192.168.160.4 - - [23/Jul/2019:00:35:54 +0000] "GET /graphql HTTP/1.1" 404 9003 "-" "Go-http-client/1.1" -192.168.160.4 - - [23/Jul/2019:00:35:55 +0000] "GET /graphql HTTP/1.1" 404 9003 "-" "Go-http-client/1.1" -192.168.160.4 - - [23/Jul/2019:00:35:57 +0000] "GET /graphql HTTP/1.1" 404 9003 "-" "Go-http-client/1.1" -192.168.160.4 - - [23/Jul/2019:00:35:58 +0000] "GET /graphql HTTP/1.1" 404 9003 "-" "Go-http-client/1.1" -192.168.160.4 - - [23/Jul/2019:00:36:00 +0000] "GET /graphql HTTP/1.1" 404 9003 "-" "Go-http-client/1.1" -192.168.160.3 - - [23/Jul/2019:00:35:58 +0000] "POST /wp-cron.php?doing_wp_cron=1563842158.1035120487213134765625 HTTP/1.1" 200 192 "http://wordpress/wp-cron.php?doing_wp_cron=1563842158.1035120487213134765625" "WordPress/5.2.2; http://wordpress" -192.168.160.4 - - [23/Jul/2019:00:36:01 +0000] "GET /graphql HTTP/1.1" 404 9003 "-" "Go-http-client/1.1" -192.168.160.4 - - [23/Jul/2019:00:36:02 +0000] "GET /graphql HTTP/1.1" 404 9003 "-" "Go-http-client/1.1" -192.168.160.4 - - [23/Jul/2019:00:36:03 +0000] "GET /graphql HTTP/1.1" 404 9003 "-" "Go-http-client/1.1" -192.168.160.4 - - [23/Jul/2019:00:36:04 +0000] "GET /graphql HTTP/1.1" 404 9003 "-" "Go-http-client/1.1" -192.168.160.4 - - [23/Jul/2019:00:36:05 +0000] "GET /graphql HTTP/1.1" 404 9003 "-" "Go-http-client/1.1" -192.168.160.4 - - [23/Jul/2019:00:36:06 +0000] "GET /graphql HTTP/1.1" 404 9003 "-" "Go-http-client/1.1" -192.168.160.4 - - [23/Jul/2019:00:36:07 +0000] "GET /graphql HTTP/1.1" 404 9003 "-" "Go-http-client/1.1" -192.168.160.4 - - [23/Jul/2019:00:36:08 +0000] "GET /graphql HTTP/1.1" 404 9003 "-" "Go-http-client/1.1" -192.168.160.4 - - [23/Jul/2019:00:36:09 +0000] "GET /graphql HTTP/1.1" 404 9003 "-" "Go-http-client/1.1" -192.168.160.4 - - [23/Jul/2019:00:36:10 +0000] "GET /graphql HTTP/1.1" 404 9003 "-" "Go-http-client/1.1" -192.168.160.4 - - [23/Jul/2019:00:36:11 +0000] "GET /graphql HTTP/1.1" 404 9003 "-" "Go-http-client/1.1" -192.168.160.4 - - [23/Jul/2019:00:36:12 +0000] "GET /graphql HTTP/1.1" 404 9003 "-" "Go-http-client/1.1" -192.168.160.4 - - [23/Jul/2019:00:36:13 +0000] "GET /graphql HTTP/1.1" 404 9003 "-" "Go-http-client/1.1" -192.168.160.4 - - [23/Jul/2019:00:36:14 +0000] "GET /graphql HTTP/1.1" 404 9003 "-" "Go-http-client/1.1" -192.168.160.4 - - [23/Jul/2019:00:36:15 +0000] "GET /graphql HTTP/1.1" 404 9003 "-" "Go-http-client/1.1" -192.168.160.4 - - [23/Jul/2019:00:36:16 +0000] "GET /graphql HTTP/1.1" 404 9003 "-" "Go-http-client/1.1" -192.168.160.4 - - [23/Jul/2019:00:36:17 +0000] "GET /graphql HTTP/1.1" 404 9003 "-" "Go-http-client/1.1" -192.168.160.4 - - [23/Jul/2019:00:36:19 +0000] "GET /graphql HTTP/1.1" 404 9003 "-" "Go-http-client/1.1" -192.168.160.4 - - [23/Jul/2019:00:36:20 +0000] "GET /graphql HTTP/1.1" 404 9003 "-" "Go-http-client/1.1" -192.168.160.4 - - [23/Jul/2019:00:36:21 +0000] "GET /graphql HTTP/1.1" 404 9003 "-" "Go-http-client/1.1" -192.168.160.4 - - [23/Jul/2019:00:36:22 +0000] "GET /graphql HTTP/1.1" 404 9003 "-" "Go-http-client/1.1" -192.168.160.4 - - [23/Jul/2019:00:36:23 +0000] "GET /graphql HTTP/1.1" 404 9003 "-" "Go-http-client/1.1" -192.168.160.4 - - [23/Jul/2019:00:36:24 +0000] "GET /graphql HTTP/1.1" 404 9003 "-" "Go-http-client/1.1" -192.168.160.4 - - [23/Jul/2019:00:36:25 +0000] "GET /graphql HTTP/1.1" 404 9003 "-" "Go-http-client/1.1" -192.168.160.4 - - [23/Jul/2019:00:36:26 +0000] "GET /graphql HTTP/1.1" 404 9003 "-" "Go-http-client/1.1" -192.168.160.4 - - [23/Jul/2019:00:36:27 +0000] "GET /graphql HTTP/1.1" 404 9003 "-" "Go-http-client/1.1" -192.168.160.4 - - [23/Jul/2019:00:36:28 +0000] "GET /graphql HTTP/1.1" 404 9003 "-" "Go-http-client/1.1" -192.168.160.4 - - [23/Jul/2019:00:36:29 +0000] "GET /graphql HTTP/1.1" 404 9003 "-" "Go-http-client/1.1" -192.168.160.4 - - [23/Jul/2019:00:36:30 +0000] "GET /graphql HTTP/1.1" 404 9003 "-" "Go-http-client/1.1" -192.168.160.4 - - [23/Jul/2019:00:36:31 +0000] "GET /graphql HTTP/1.1" 404 9003 "-" "Go-http-client/1.1" -192.168.160.4 - - [23/Jul/2019:00:36:32 +0000] "GET /graphql HTTP/1.1" 404 9003 "-" "Go-http-client/1.1" -192.168.160.4 - - [23/Jul/2019:00:36:33 +0000] "GET /graphql HTTP/1.1" 404 9003 "-" "Go-http-client/1.1" -192.168.160.4 - - [23/Jul/2019:00:36:34 +0000] "GET /graphql HTTP/1.1" 404 9003 "-" "Go-http-client/1.1" -192.168.160.4 - - [23/Jul/2019:00:36:35 +0000] "GET /graphql HTTP/1.1" 404 9003 "-" "Go-http-client/1.1" -192.168.160.4 - - [23/Jul/2019:00:36:36 +0000] "GET /graphql HTTP/1.1" 404 9003 "-" "Go-http-client/1.1" -192.168.160.4 - - [23/Jul/2019:00:36:37 +0000] "GET /graphql HTTP/1.1" 404 9003 "-" "Go-http-client/1.1" -192.168.160.4 - - [23/Jul/2019:00:36:38 +0000] "GET /graphql HTTP/1.1" 404 9003 "-" "Go-http-client/1.1" -192.168.160.4 - - [23/Jul/2019:00:36:39 +0000] "GET /graphql HTTP/1.1" 404 9003 "-" "Go-http-client/1.1" -192.168.160.4 - - [23/Jul/2019:00:36:40 +0000] "GET /graphql HTTP/1.1" 404 9003 "-" "Go-http-client/1.1" -192.168.160.4 - - [23/Jul/2019:00:36:41 +0000] "GET /graphql HTTP/1.1" 404 9003 "-" "Go-http-client/1.1" -192.168.160.4 - - [23/Jul/2019:00:36:42 +0000] "GET /graphql HTTP/1.1" 404 9003 "-" "Go-http-client/1.1" -192.168.160.4 - - [23/Jul/2019:00:36:44 +0000] "GET /graphql HTTP/1.1" 404 9003 "-" "Go-http-client/1.1" -192.168.160.4 - - [23/Jul/2019:00:36:45 +0000] "GET /graphql HTTP/1.1" 404 9003 "-" "Go-http-client/1.1" -192.168.160.4 - - [23/Jul/2019:00:36:46 +0000] "GET /graphql HTTP/1.1" 404 9003 "-" "Go-http-client/1.1" -192.168.160.4 - - [23/Jul/2019:00:36:47 +0000] "GET /graphql HTTP/1.1" 404 9003 "-" "Go-http-client/1.1" -192.168.160.4 - - [23/Jul/2019:00:36:48 +0000] "GET /graphql HTTP/1.1" 404 9003 "-" "Go-http-client/1.1" -192.168.160.4 - - [23/Jul/2019:00:36:49 +0000] "GET /graphql HTTP/1.1" 404 9003 "-" "Go-http-client/1.1" -192.168.160.4 - - [23/Jul/2019:00:36:50 +0000] "GET /graphql HTTP/1.1" 404 9003 "-" "Go-http-client/1.1" -192.168.160.4 - - [23/Jul/2019:00:36:51 +0000] "GET /graphql HTTP/1.1" 404 9003 "-" "Go-http-client/1.1" -192.168.160.4 - - [23/Jul/2019:00:36:52 +0000] "GET /graphql HTTP/1.1" 404 9003 "-" "Go-http-client/1.1" -192.168.160.4 - - [23/Jul/2019:00:36:53 +0000] "GET /graphql HTTP/1.1" 404 9003 "-" "Go-http-client/1.1" -192.168.160.4 - - [23/Jul/2019:00:36:54 +0000] "GET /graphql HTTP/1.1" 404 9003 "-" "Go-http-client/1.1" -192.168.160.4 - - [23/Jul/2019:00:36:55 +0000] "GET /graphql HTTP/1.1" 404 9003 "-" "Go-http-client/1.1" -192.168.160.4 - - [23/Jul/2019:00:36:56 +0000] "GET /graphql HTTP/1.1" 404 9003 "-" "Go-http-client/1.1" -192.168.160.4 - - [23/Jul/2019:00:36:57 +0000] "GET /graphql HTTP/1.1" 404 9003 "-" "Go-http-client/1.1" -192.168.160.4 - - [23/Jul/2019:00:36:58 +0000] "GET /graphql HTTP/1.1" 404 9003 "-" "Go-http-client/1.1" -192.168.160.4 - - [23/Jul/2019:00:36:59 +0000] "GET /graphql HTTP/1.1" 404 9003 "-" "Go-http-client/1.1" -192.168.160.4 - - [23/Jul/2019:00:37:00 +0000] "GET /graphql HTTP/1.1" 404 9003 "-" "Go-http-client/1.1" -192.168.160.4 - - [23/Jul/2019:00:37:01 +0000] "GET /graphql HTTP/1.1" 404 9003 "-" "Go-http-client/1.1" -192.168.160.4 - - [23/Jul/2019:00:37:02 +0000] "GET /graphql HTTP/1.1" 404 9003 "-" "Go-http-client/1.1" -192.168.160.4 - - [23/Jul/2019:00:37:03 +0000] "GET /graphql HTTP/1.1" 404 9003 "-" "Go-http-client/1.1" -192.168.160.4 - - [23/Jul/2019:00:37:04 +0000] "GET /graphql HTTP/1.1" 404 9003 "-" "Go-http-client/1.1" -192.168.160.4 - - [23/Jul/2019:00:37:05 +0000] "GET /graphql HTTP/1.1" 404 9003 "-" "Go-http-client/1.1" -127.0.0.1 - - [23/Jul/2019:00:37:07 +0000] "OPTIONS * HTTP/1.0" 200 126 "-" "Apache/2.4.38 (Debian) PHP/7.2.20 (internal dummy connection)" -127.0.0.1 - - [23/Jul/2019:00:37:08 +0000] "OPTIONS * HTTP/1.0" 200 126 "-" "Apache/2.4.38 (Debian) PHP/7.2.20 (internal dummy connection)" -127.0.0.1 - - [23/Jul/2019:00:37:09 +0000] "OPTIONS * HTTP/1.0" 200 126 "-" "Apache/2.4.38 (Debian) PHP/7.2.20 (internal dummy connection)" -192.168.160.4 - - [23/Jul/2019:00:37:34 +0000] "POST /graphql HTTP/1.1" 404 9003 "-" "Symfony BrowserKit" -192.168.192.4 - - [23/Jul/2019:00:41:30 +0000] "GET /graphql HTTP/1.1" 404 9003 "-" "Go-http-client/1.1" -192.168.192.4 - - [23/Jul/2019:00:41:32 +0000] "GET /graphql HTTP/1.1" 404 9003 "-" "Go-http-client/1.1" -192.168.192.4 - - [23/Jul/2019:00:41:33 +0000] "GET /graphql HTTP/1.1" 404 9003 "-" "Go-http-client/1.1" -192.168.192.4 - - [23/Jul/2019:00:41:34 +0000] "GET /graphql HTTP/1.1" 404 9003 "-" "Go-http-client/1.1" -192.168.192.4 - - [23/Jul/2019:00:41:35 +0000] "GET /graphql HTTP/1.1" 404 9003 "-" "Go-http-client/1.1" -192.168.192.4 - - [23/Jul/2019:00:41:36 +0000] "GET /graphql HTTP/1.1" 404 9003 "-" "Go-http-client/1.1" -192.168.192.4 - - [23/Jul/2019:00:41:37 +0000] "GET /graphql HTTP/1.1" 404 9003 "-" "Go-http-client/1.1" -192.168.192.4 - - [23/Jul/2019:00:41:38 +0000] "GET /graphql HTTP/1.1" 404 9003 "-" "Go-http-client/1.1" -192.168.192.4 - - [23/Jul/2019:00:41:39 +0000] "GET /graphql HTTP/1.1" 404 9003 "-" "Go-http-client/1.1" -192.168.192.4 - - [23/Jul/2019:00:41:40 +0000] "GET /graphql HTTP/1.1" 404 9003 "-" "Go-http-client/1.1" -192.168.192.4 - - [23/Jul/2019:00:41:41 +0000] "GET /graphql HTTP/1.1" 404 9003 "-" "Go-http-client/1.1" -192.168.192.4 - - [23/Jul/2019:00:41:43 +0000] "GET /graphql HTTP/1.1" 404 9003 "-" "Go-http-client/1.1" -192.168.192.4 - - [23/Jul/2019:00:41:44 +0000] "GET /graphql HTTP/1.1" 404 9003 "-" "Go-http-client/1.1" -192.168.192.4 - - [23/Jul/2019:00:41:45 +0000] "GET /graphql HTTP/1.1" 404 9003 "-" "Go-http-client/1.1" -192.168.192.4 - - [23/Jul/2019:00:41:46 +0000] "GET /graphql HTTP/1.1" 404 9003 "-" "Go-http-client/1.1" -192.168.192.4 - - [23/Jul/2019:00:41:47 +0000] "GET /graphql HTTP/1.1" 404 9003 "-" "Go-http-client/1.1" -192.168.192.4 - - [23/Jul/2019:00:41:48 +0000] "GET /graphql HTTP/1.1" 404 9003 "-" "Go-http-client/1.1" -192.168.192.4 - - [23/Jul/2019:00:41:49 +0000] "GET /graphql HTTP/1.1" 404 9003 "-" "Go-http-client/1.1" -192.168.192.4 - - [23/Jul/2019:00:41:50 +0000] "GET /graphql HTTP/1.1" 404 9003 "-" "Go-http-client/1.1" -192.168.192.4 - - [23/Jul/2019:00:41:51 +0000] "GET /graphql HTTP/1.1" 404 9003 "-" "Go-http-client/1.1" -192.168.192.4 - - [23/Jul/2019:00:41:52 +0000] "GET /graphql HTTP/1.1" 404 9003 "-" "Go-http-client/1.1" -192.168.192.4 - - [23/Jul/2019:00:41:53 +0000] "GET /graphql HTTP/1.1" 404 9003 "-" "Go-http-client/1.1" -192.168.192.4 - - [23/Jul/2019:00:41:54 +0000] "GET /graphql HTTP/1.1" 404 9003 "-" "Go-http-client/1.1" -192.168.192.4 - - [23/Jul/2019:00:41:55 +0000] "GET /graphql HTTP/1.1" 404 9003 "-" "Go-http-client/1.1" -192.168.192.4 - - [23/Jul/2019:00:41:56 +0000] "GET /graphql HTTP/1.1" 404 9003 "-" "Go-http-client/1.1" -192.168.192.4 - - [23/Jul/2019:00:41:57 +0000] "GET /graphql HTTP/1.1" 404 9003 "-" "Go-http-client/1.1" -192.168.192.4 - - [23/Jul/2019:00:41:58 +0000] "GET /graphql HTTP/1.1" 404 9003 "-" "Go-http-client/1.1" -192.168.192.4 - - [23/Jul/2019:00:41:59 +0000] "GET /graphql HTTP/1.1" 404 9003 "-" "Go-http-client/1.1" -192.168.192.4 - - [23/Jul/2019:00:42:00 +0000] "GET /graphql HTTP/1.1" 404 9003 "-" "Go-http-client/1.1" -192.168.192.4 - - [23/Jul/2019:00:42:01 +0000] "GET /graphql HTTP/1.1" 404 9003 "-" "Go-http-client/1.1" -192.168.192.4 - - [23/Jul/2019:00:42:02 +0000] "GET /graphql HTTP/1.1" 404 9003 "-" "Go-http-client/1.1" -192.168.192.4 - - [23/Jul/2019:00:42:03 +0000] "GET /graphql HTTP/1.1" 404 9003 "-" "Go-http-client/1.1" -192.168.192.4 - - [23/Jul/2019:00:42:04 +0000] "GET /graphql HTTP/1.1" 404 9003 "-" "Go-http-client/1.1" -192.168.192.4 - - [23/Jul/2019:00:42:05 +0000] "GET /graphql HTTP/1.1" 404 9003 "-" "Go-http-client/1.1" -192.168.192.4 - - [23/Jul/2019:00:42:07 +0000] "GET /graphql HTTP/1.1" 404 9003 "-" "Go-http-client/1.1" -192.168.192.4 - - [23/Jul/2019:00:42:08 +0000] "GET /graphql HTTP/1.1" 404 9003 "-" "Go-http-client/1.1" -192.168.192.4 - - [23/Jul/2019:00:42:09 +0000] "GET /graphql HTTP/1.1" 404 9003 "-" "Go-http-client/1.1" -192.168.192.4 - - [23/Jul/2019:00:42:10 +0000] "GET /graphql HTTP/1.1" 404 9003 "-" "Go-http-client/1.1" -192.168.192.4 - - [23/Jul/2019:00:42:11 +0000] "GET /graphql HTTP/1.1" 404 9003 "-" "Go-http-client/1.1" -192.168.192.4 - - [23/Jul/2019:00:42:12 +0000] "GET /graphql HTTP/1.1" 404 9003 "-" "Go-http-client/1.1" -192.168.192.4 - - [23/Jul/2019:00:42:13 +0000] "GET /graphql HTTP/1.1" 404 9003 "-" "Go-http-client/1.1" -192.168.192.4 - - [23/Jul/2019:00:42:14 +0000] "GET /graphql HTTP/1.1" 404 9003 "-" "Go-http-client/1.1" -192.168.192.4 - - [23/Jul/2019:00:42:15 +0000] "GET /graphql HTTP/1.1" 404 9003 "-" "Go-http-client/1.1" -192.168.192.4 - - [23/Jul/2019:00:42:16 +0000] "GET /graphql HTTP/1.1" 404 9003 "-" "Go-http-client/1.1" -192.168.192.4 - - [23/Jul/2019:00:42:17 +0000] "GET /graphql HTTP/1.1" 404 9003 "-" "Go-http-client/1.1" -192.168.192.4 - - [23/Jul/2019:00:42:18 +0000] "GET /graphql HTTP/1.1" 404 9003 "-" "Go-http-client/1.1" -192.168.192.4 - - [23/Jul/2019:00:42:19 +0000] "GET /graphql HTTP/1.1" 404 9003 "-" "Go-http-client/1.1" -192.168.192.4 - - [23/Jul/2019:00:42:20 +0000] "GET /graphql HTTP/1.1" 404 9003 "-" "Go-http-client/1.1" -192.168.192.4 - - [23/Jul/2019:00:42:21 +0000] "GET /graphql HTTP/1.1" 404 9003 "-" "Go-http-client/1.1" -192.168.192.4 - - [23/Jul/2019:00:42:22 +0000] "GET /graphql HTTP/1.1" 404 9003 "-" "Go-http-client/1.1" -192.168.192.4 - - [23/Jul/2019:00:42:23 +0000] "GET /graphql HTTP/1.1" 404 9003 "-" "Go-http-client/1.1" -192.168.192.4 - - [23/Jul/2019:00:42:24 +0000] "GET /graphql HTTP/1.1" 404 9003 "-" "Go-http-client/1.1" -192.168.192.4 - - [23/Jul/2019:00:42:25 +0000] "GET /graphql HTTP/1.1" 404 9003 "-" "Go-http-client/1.1" -192.168.192.4 - - [23/Jul/2019:00:42:26 +0000] "GET /graphql HTTP/1.1" 404 9003 "-" "Go-http-client/1.1" -192.168.192.4 - - [23/Jul/2019:00:42:27 +0000] "GET /graphql HTTP/1.1" 404 9003 "-" "Go-http-client/1.1" -192.168.192.4 - - [23/Jul/2019:00:42:28 +0000] "GET /graphql HTTP/1.1" 404 9003 "-" "Go-http-client/1.1" -192.168.192.4 - - [23/Jul/2019:00:42:31 +0000] "GET /graphql HTTP/1.1" 404 9003 "-" "Go-http-client/1.1" -192.168.192.3 - - [23/Jul/2019:00:42:29 +0000] "POST /wp-cron.php?doing_wp_cron=1563842548.9784030914306640625000 HTTP/1.1" 200 192 "http://wordpress/wp-cron.php?doing_wp_cron=1563842548.9784030914306640625000" "WordPress/5.2.2; http://wordpress" -192.168.192.4 - - [23/Jul/2019:00:42:32 +0000] "GET /graphql HTTP/1.1" 404 9003 "-" "Go-http-client/1.1" -192.168.192.4 - - [23/Jul/2019:00:42:33 +0000] "GET /graphql HTTP/1.1" 404 9003 "-" "Go-http-client/1.1" -192.168.192.4 - - [23/Jul/2019:00:42:34 +0000] "GET /graphql HTTP/1.1" 404 9003 "-" "Go-http-client/1.1" -192.168.192.4 - - [23/Jul/2019:00:42:35 +0000] "GET /graphql HTTP/1.1" 404 9003 "-" "Go-http-client/1.1" -192.168.192.4 - - [23/Jul/2019:00:42:36 +0000] "GET /graphql HTTP/1.1" 404 9003 "-" "Go-http-client/1.1" -192.168.192.4 - - [23/Jul/2019:00:42:37 +0000] "GET /graphql HTTP/1.1" 404 9003 "-" "Go-http-client/1.1" -192.168.192.4 - - [23/Jul/2019:00:42:38 +0000] "GET /graphql HTTP/1.1" 404 9003 "-" "Go-http-client/1.1" -192.168.192.4 - - [23/Jul/2019:00:42:39 +0000] "GET /graphql HTTP/1.1" 404 9003 "-" "Go-http-client/1.1" -192.168.192.4 - - [23/Jul/2019:00:42:40 +0000] "GET /graphql HTTP/1.1" 404 9003 "-" "Go-http-client/1.1" -192.168.192.4 - - [23/Jul/2019:00:42:41 +0000] "GET /graphql HTTP/1.1" 404 9003 "-" "Go-http-client/1.1" -192.168.192.4 - - [23/Jul/2019:00:42:42 +0000] "GET /graphql HTTP/1.1" 404 9003 "-" "Go-http-client/1.1" -192.168.192.4 - - [23/Jul/2019:00:42:43 +0000] "GET /graphql HTTP/1.1" 404 9003 "-" "Go-http-client/1.1" -192.168.192.4 - - [23/Jul/2019:00:42:44 +0000] "GET /graphql HTTP/1.1" 404 9003 "-" "Go-http-client/1.1" -192.168.192.4 - - [23/Jul/2019:00:42:45 +0000] "GET /graphql HTTP/1.1" 404 9003 "-" "Go-http-client/1.1" -192.168.192.4 - - [23/Jul/2019:00:42:46 +0000] "GET /graphql HTTP/1.1" 404 9003 "-" "Go-http-client/1.1" -192.168.192.4 - - [23/Jul/2019:00:42:47 +0000] "GET /graphql HTTP/1.1" 404 9003 "-" "Go-http-client/1.1" -192.168.192.4 - - [23/Jul/2019:00:42:48 +0000] "GET /graphql HTTP/1.1" 404 9003 "-" "Go-http-client/1.1" -192.168.192.4 - - [23/Jul/2019:00:42:49 +0000] "GET /graphql HTTP/1.1" 404 9003 "-" "Go-http-client/1.1" -192.168.192.4 - - [23/Jul/2019:00:42:50 +0000] "GET /graphql HTTP/1.1" 404 9003 "-" "Go-http-client/1.1" -192.168.192.4 - - [23/Jul/2019:00:42:51 +0000] "GET /graphql HTTP/1.1" 404 9003 "-" "Go-http-client/1.1" -192.168.192.4 - - [23/Jul/2019:00:42:52 +0000] "GET /graphql HTTP/1.1" 404 9003 "-" "Go-http-client/1.1" -192.168.192.4 - - [23/Jul/2019:00:42:54 +0000] "GET /graphql HTTP/1.1" 404 9003 "-" "Go-http-client/1.1" -192.168.192.4 - - [23/Jul/2019:00:42:55 +0000] "GET /graphql HTTP/1.1" 404 9003 "-" "Go-http-client/1.1" -192.168.192.4 - - [23/Jul/2019:00:42:56 +0000] "GET /graphql HTTP/1.1" 404 9003 "-" "Go-http-client/1.1" -192.168.192.4 - - [23/Jul/2019:00:42:57 +0000] "GET /graphql HTTP/1.1" 404 9003 "-" "Go-http-client/1.1" -192.168.192.4 - - [23/Jul/2019:00:42:58 +0000] "GET /graphql HTTP/1.1" 404 9003 "-" "Go-http-client/1.1" -192.168.192.4 - - [23/Jul/2019:00:42:59 +0000] "GET /graphql HTTP/1.1" 404 9003 "-" "Go-http-client/1.1" -192.168.192.4 - - [23/Jul/2019:00:43:00 +0000] "GET /graphql HTTP/1.1" 404 9003 "-" "Go-http-client/1.1" -192.168.192.4 - - [23/Jul/2019:00:43:01 +0000] "GET /graphql HTTP/1.1" 404 9003 "-" "Go-http-client/1.1" -192.168.192.4 - - [23/Jul/2019:00:43:02 +0000] "GET /graphql HTTP/1.1" 404 9003 "-" "Go-http-client/1.1" -192.168.192.4 - - [23/Jul/2019:00:43:03 +0000] "GET /graphql HTTP/1.1" 404 9003 "-" "Go-http-client/1.1" -192.168.192.4 - - [23/Jul/2019:00:43:04 +0000] "GET /graphql HTTP/1.1" 404 9003 "-" "Go-http-client/1.1" -192.168.192.4 - - [23/Jul/2019:00:43:05 +0000] "GET /graphql HTTP/1.1" 404 9003 "-" "Go-http-client/1.1" -192.168.192.4 - - [23/Jul/2019:00:43:06 +0000] "GET /graphql HTTP/1.1" 404 9003 "-" "Go-http-client/1.1" -192.168.192.4 - - [23/Jul/2019:00:43:07 +0000] "GET /graphql HTTP/1.1" 404 9003 "-" "Go-http-client/1.1" -192.168.192.4 - - [23/Jul/2019:00:43:08 +0000] "GET /graphql HTTP/1.1" 404 9003 "-" "Go-http-client/1.1" -192.168.192.4 - - [23/Jul/2019:00:43:09 +0000] "GET /graphql HTTP/1.1" 404 9003 "-" "Go-http-client/1.1" -192.168.192.4 - - [23/Jul/2019:00:43:10 +0000] "GET /graphql HTTP/1.1" 404 9003 "-" "Go-http-client/1.1" -192.168.192.4 - - [23/Jul/2019:00:43:11 +0000] "GET /graphql HTTP/1.1" 404 9003 "-" "Go-http-client/1.1" -192.168.192.4 - - [23/Jul/2019:00:43:12 +0000] "GET /graphql HTTP/1.1" 404 9003 "-" "Go-http-client/1.1" -192.168.192.4 - - [23/Jul/2019:00:43:13 +0000] "GET /graphql HTTP/1.1" 404 9003 "-" "Go-http-client/1.1" -192.168.192.4 - - [23/Jul/2019:00:43:14 +0000] "GET /graphql HTTP/1.1" 404 9003 "-" "Go-http-client/1.1" -192.168.192.4 - - [23/Jul/2019:00:43:15 +0000] "GET /graphql HTTP/1.1" 404 9003 "-" "Go-http-client/1.1" -192.168.192.4 - - [23/Jul/2019:00:43:16 +0000] "GET /graphql HTTP/1.1" 404 9003 "-" "Go-http-client/1.1" -192.168.192.4 - - [23/Jul/2019:00:43:17 +0000] "GET /graphql HTTP/1.1" 404 9003 "-" "Go-http-client/1.1" -192.168.192.4 - - [23/Jul/2019:00:43:19 +0000] "GET /graphql HTTP/1.1" 404 9003 "-" "Go-http-client/1.1" -192.168.192.4 - - [23/Jul/2019:00:43:20 +0000] "GET /graphql HTTP/1.1" 404 9003 "-" "Go-http-client/1.1" -192.168.192.4 - - [23/Jul/2019:00:43:21 +0000] "GET /graphql HTTP/1.1" 404 9003 "-" "Go-http-client/1.1" -192.168.192.4 - - [23/Jul/2019:00:43:22 +0000] "GET /graphql HTTP/1.1" 404 9003 "-" "Go-http-client/1.1" -192.168.192.4 - - [23/Jul/2019:00:43:23 +0000] "GET /graphql HTTP/1.1" 404 9003 "-" "Go-http-client/1.1" -192.168.192.4 - - [23/Jul/2019:00:43:24 +0000] "GET /graphql HTTP/1.1" 404 9003 "-" "Go-http-client/1.1" -192.168.192.4 - - [23/Jul/2019:00:43:25 +0000] "GET /graphql HTTP/1.1" 404 9003 "-" "Go-http-client/1.1" -192.168.192.4 - - [23/Jul/2019:00:43:26 +0000] "GET /graphql HTTP/1.1" 404 9003 "-" "Go-http-client/1.1" -192.168.192.4 - - [23/Jul/2019:00:43:27 +0000] "GET /graphql HTTP/1.1" 404 9003 "-" "Go-http-client/1.1" -192.168.192.4 - - [23/Jul/2019:00:43:28 +0000] "GET /graphql HTTP/1.1" 404 9003 "-" "Go-http-client/1.1" -192.168.192.4 - - [23/Jul/2019:00:43:29 +0000] "GET /graphql HTTP/1.1" 404 9003 "-" "Go-http-client/1.1" -192.168.192.4 - - [23/Jul/2019:00:43:30 +0000] "GET /graphql HTTP/1.1" 404 9003 "-" "Go-http-client/1.1" -192.168.192.4 - - [23/Jul/2019:00:43:31 +0000] "GET /graphql HTTP/1.1" 404 9003 "-" "Go-http-client/1.1" -127.0.0.1 - - [23/Jul/2019:00:43:31 +0000] "OPTIONS * HTTP/1.0" 200 126 "-" "Apache/2.4.38 (Debian) PHP/7.2.20 (internal dummy connection)" -127.0.0.1 - - [23/Jul/2019:00:43:32 +0000] "OPTIONS * HTTP/1.0" 200 126 "-" "Apache/2.4.38 (Debian) PHP/7.2.20 (internal dummy connection)" -192.168.192.4 - - [23/Jul/2019:00:43:56 +0000] "POST /graphql HTTP/1.1" 404 9003 "-" "Symfony BrowserKit" -192.168.192.1 - - [23/Jul/2019:00:53:39 +0000] "GET / HTTP/1.1" 301 299 "-" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/75.0.3770.100 Safari/537.36" -192.168.192.3 - - [23/Jul/2019:00:53:40 +0000] "POST /wp-admin/admin-ajax.php?action=wp_1_wc_privacy_cleanup&nonce=42fc26538f HTTP/1.1" 200 492 "http://wordpress/wp-admin/admin-ajax.php?action=wp_1_wc_privacy_cleanup&nonce=42fc26538f" "WordPress/5.2.2; http://wordpress" -192.168.192.3 - - [23/Jul/2019:00:53:40 +0000] "POST /wp-cron.php?doing_wp_cron=1563843220.4602689743041992187500 HTTP/1.1" 200 192 "http://wordpress/wp-cron.php?doing_wp_cron=1563843220.4602689743041992187500" "WordPress/5.2.2; http://wordpress" -192.168.192.1 - - [23/Jul/2019:00:54:30 +0000] "-" 408 0 "-" "-" -192.168.240.4 - - [23/Jul/2019:00:58:11 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" -192.168.240.4 - - [23/Jul/2019:00:58:12 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" -192.168.240.4 - - [23/Jul/2019:00:58:13 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" -192.168.240.4 - - [23/Jul/2019:00:58:14 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" -192.168.240.4 - - [23/Jul/2019:00:58:15 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" -192.168.240.4 - - [23/Jul/2019:00:58:16 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" -192.168.240.4 - - [23/Jul/2019:00:58:17 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" -192.168.240.4 - - [23/Jul/2019:00:58:18 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" -192.168.240.4 - - [23/Jul/2019:00:58:19 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" -192.168.240.4 - - [23/Jul/2019:00:58:20 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" -192.168.240.4 - - [23/Jul/2019:00:58:21 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" -192.168.240.4 - - [23/Jul/2019:00:58:22 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" -192.168.240.4 - - [23/Jul/2019:00:58:23 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" -192.168.240.4 - - [23/Jul/2019:00:58:24 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" -192.168.240.4 - - [23/Jul/2019:00:58:25 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" -192.168.240.4 - - [23/Jul/2019:00:58:26 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" -192.168.240.4 - - [23/Jul/2019:00:58:27 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" -192.168.240.4 - - [23/Jul/2019:00:58:28 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" -192.168.240.4 - - [23/Jul/2019:00:58:29 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" -192.168.240.4 - - [23/Jul/2019:00:58:30 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" -192.168.240.4 - - [23/Jul/2019:00:58:31 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" -192.168.240.4 - - [23/Jul/2019:00:58:32 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" -192.168.240.4 - - [23/Jul/2019:00:58:33 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" -192.168.240.4 - - [23/Jul/2019:00:58:34 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" -192.168.240.4 - - [23/Jul/2019:00:58:35 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" -192.168.240.4 - - [23/Jul/2019:00:58:36 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" -192.168.240.4 - - [23/Jul/2019:00:58:37 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" -192.168.240.4 - - [23/Jul/2019:00:58:38 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" -192.168.240.4 - - [23/Jul/2019:00:58:39 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" -192.168.240.4 - - [23/Jul/2019:00:58:40 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" -192.168.240.4 - - [23/Jul/2019:00:58:41 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" -192.168.240.4 - - [23/Jul/2019:00:58:42 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" -192.168.240.4 - - [23/Jul/2019:00:58:43 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" -192.168.240.4 - - [23/Jul/2019:00:58:44 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" -192.168.240.4 - - [23/Jul/2019:00:58:45 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" -192.168.240.4 - - [23/Jul/2019:00:58:46 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" -192.168.240.4 - - [23/Jul/2019:00:58:47 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" -192.168.240.4 - - [23/Jul/2019:00:58:48 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" -192.168.240.4 - - [23/Jul/2019:00:58:49 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" -192.168.240.4 - - [23/Jul/2019:00:58:50 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" -192.168.240.4 - - [23/Jul/2019:00:58:51 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" -192.168.240.4 - - [23/Jul/2019:00:58:52 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" -192.168.240.4 - - [23/Jul/2019:00:58:53 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" -192.168.240.4 - - [23/Jul/2019:00:58:54 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" -192.168.240.4 - - [23/Jul/2019:00:58:55 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" -192.168.240.4 - - [23/Jul/2019:00:58:56 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" -192.168.240.4 - - [23/Jul/2019:00:58:57 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" -192.168.240.4 - - [23/Jul/2019:00:58:58 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" -192.168.240.4 - - [23/Jul/2019:00:58:59 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" -192.168.240.4 - - [23/Jul/2019:00:59:00 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" -192.168.240.4 - - [23/Jul/2019:00:59:01 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" -192.168.240.4 - - [23/Jul/2019:00:59:02 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" -192.168.240.4 - - [23/Jul/2019:00:59:03 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" -192.168.240.4 - - [23/Jul/2019:00:59:04 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" -192.168.240.4 - - [23/Jul/2019:00:59:05 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" -192.168.240.4 - - [23/Jul/2019:00:59:06 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" -192.168.240.4 - - [23/Jul/2019:00:59:07 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" -192.168.240.4 - - [23/Jul/2019:00:59:08 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" -192.168.240.4 - - [23/Jul/2019:00:59:09 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" -192.168.240.4 - - [23/Jul/2019:00:59:10 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" -192.168.240.4 - - [23/Jul/2019:00:59:11 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" -192.168.240.4 - - [23/Jul/2019:00:59:12 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" -192.168.240.4 - - [23/Jul/2019:00:59:13 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" -192.168.240.4 - - [23/Jul/2019:00:59:14 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" -192.168.240.4 - - [23/Jul/2019:00:59:15 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" -192.168.240.4 - - [23/Jul/2019:00:59:16 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" -192.168.240.4 - - [23/Jul/2019:00:59:17 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" -192.168.240.4 - - [23/Jul/2019:00:59:18 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" -192.168.240.4 - - [23/Jul/2019:00:59:19 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" -192.168.240.4 - - [23/Jul/2019:00:59:20 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" -192.168.240.4 - - [23/Jul/2019:00:59:21 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" -192.168.240.4 - - [23/Jul/2019:00:59:22 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" -192.168.240.4 - - [23/Jul/2019:00:59:23 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" -192.168.240.4 - - [23/Jul/2019:00:59:24 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" -192.168.240.4 - - [23/Jul/2019:00:59:25 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" -192.168.240.4 - - [23/Jul/2019:00:59:26 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" -192.168.240.4 - - [23/Jul/2019:00:59:27 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" -192.168.240.4 - - [23/Jul/2019:00:59:28 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" -192.168.240.4 - - [23/Jul/2019:00:59:29 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" -192.168.240.4 - - [23/Jul/2019:00:59:30 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" -192.168.240.4 - - [23/Jul/2019:00:59:31 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" -192.168.240.4 - - [23/Jul/2019:00:59:32 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" -192.168.240.4 - - [23/Jul/2019:00:59:33 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" -192.168.240.4 - - [23/Jul/2019:00:59:34 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" -192.168.240.4 - - [23/Jul/2019:00:59:35 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" -192.168.240.4 - - [23/Jul/2019:00:59:36 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" -192.168.240.4 - - [23/Jul/2019:00:59:37 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" -192.168.240.4 - - [23/Jul/2019:00:59:38 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" -192.168.240.4 - - [23/Jul/2019:00:59:39 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" -192.168.240.4 - - [23/Jul/2019:00:59:40 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" -192.168.240.4 - - [23/Jul/2019:00:59:41 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" -192.168.240.4 - - [23/Jul/2019:00:59:42 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" -192.168.240.4 - - [23/Jul/2019:00:59:43 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" -192.168.240.4 - - [23/Jul/2019:00:59:44 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" -192.168.240.4 - - [23/Jul/2019:00:59:45 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" -192.168.240.4 - - [23/Jul/2019:00:59:46 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" -192.168.240.4 - - [23/Jul/2019:00:59:47 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" -192.168.240.4 - - [23/Jul/2019:00:59:48 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" -192.168.240.4 - - [23/Jul/2019:00:59:49 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" -192.168.240.4 - - [23/Jul/2019:00:59:50 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" -192.168.240.4 - - [23/Jul/2019:00:59:51 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" -192.168.240.4 - - [23/Jul/2019:00:59:52 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" -192.168.240.4 - - [23/Jul/2019:00:59:53 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" -192.168.240.4 - - [23/Jul/2019:00:59:54 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" -192.168.240.4 - - [23/Jul/2019:00:59:55 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" -192.168.240.4 - - [23/Jul/2019:00:59:56 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" -192.168.240.4 - - [23/Jul/2019:00:59:57 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" -192.168.240.4 - - [23/Jul/2019:00:59:58 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" -192.168.240.4 - - [23/Jul/2019:00:59:59 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" -192.168.240.4 - - [23/Jul/2019:01:00:00 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" -192.168.240.4 - - [23/Jul/2019:01:00:01 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" -192.168.240.4 - - [23/Jul/2019:01:00:02 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" -192.168.240.4 - - [23/Jul/2019:01:00:03 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" -192.168.240.4 - - [23/Jul/2019:01:00:04 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" -192.168.240.4 - - [23/Jul/2019:01:00:05 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" -192.168.240.4 - - [23/Jul/2019:01:00:06 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" -192.168.240.4 - - [23/Jul/2019:01:00:07 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" -192.168.240.4 - - [23/Jul/2019:01:00:08 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" -192.168.240.4 - - [23/Jul/2019:01:00:09 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" -192.168.240.4 - - [23/Jul/2019:01:00:10 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" -192.168.240.4 - - [23/Jul/2019:01:00:11 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" -192.168.240.4 - - [23/Jul/2019:01:00:12 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" -192.168.240.4 - - [23/Jul/2019:01:00:13 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" -192.168.240.4 - - [23/Jul/2019:01:00:14 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" -192.168.240.4 - - [23/Jul/2019:01:00:15 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" -127.0.0.1 - - [23/Jul/2019:01:00:16 +0000] "OPTIONS * HTTP/1.0" 200 126 "-" "Apache/2.4.38 (Debian) PHP/7.2.20 (internal dummy connection)" -127.0.0.1 - - [23/Jul/2019:01:00:17 +0000] "OPTIONS * HTTP/1.0" 200 126 "-" "Apache/2.4.38 (Debian) PHP/7.2.20 (internal dummy connection)" -192.168.240.4 - - [23/Jul/2019:01:00:41 +0000] "POST /graphql HTTP/1.1" 404 441 "-" "Symfony BrowserKit" -172.21.0.4 - - [23/Jul/2019:15:47:14 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" -172.21.0.4 - - [23/Jul/2019:15:47:15 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" -172.21.0.4 - - [23/Jul/2019:15:47:16 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" -172.21.0.4 - - [23/Jul/2019:15:47:17 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" -172.21.0.4 - - [23/Jul/2019:15:47:18 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" -172.21.0.4 - - [23/Jul/2019:15:47:19 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" -172.21.0.4 - - [23/Jul/2019:15:47:20 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" -172.21.0.4 - - [23/Jul/2019:15:47:21 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" -172.21.0.4 - - [23/Jul/2019:15:47:22 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" -172.21.0.4 - - [23/Jul/2019:15:47:23 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" -172.21.0.4 - - [23/Jul/2019:15:47:24 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" -172.21.0.4 - - [23/Jul/2019:15:47:25 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" -172.21.0.4 - - [23/Jul/2019:15:47:26 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" -172.21.0.4 - - [23/Jul/2019:15:47:27 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" -172.21.0.4 - - [23/Jul/2019:15:47:28 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" -172.21.0.4 - - [23/Jul/2019:15:47:29 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" -172.21.0.4 - - [23/Jul/2019:15:47:30 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" -172.21.0.4 - - [23/Jul/2019:15:47:31 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" -172.21.0.4 - - [23/Jul/2019:15:47:32 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" -172.21.0.4 - - [23/Jul/2019:15:47:33 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" -172.21.0.4 - - [23/Jul/2019:15:47:34 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" -172.21.0.4 - - [23/Jul/2019:15:47:35 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" -172.21.0.4 - - [23/Jul/2019:15:47:36 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" -172.21.0.4 - - [23/Jul/2019:15:47:37 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" -172.21.0.4 - - [23/Jul/2019:15:47:38 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" -172.21.0.4 - - [23/Jul/2019:15:47:39 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" -172.21.0.4 - - [23/Jul/2019:15:47:40 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" -172.21.0.4 - - [23/Jul/2019:15:47:41 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" -172.21.0.4 - - [23/Jul/2019:15:47:42 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" -172.21.0.4 - - [23/Jul/2019:15:47:43 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" -172.21.0.4 - - [23/Jul/2019:15:47:44 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" -172.21.0.4 - - [23/Jul/2019:15:47:45 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" -172.21.0.4 - - [23/Jul/2019:15:47:46 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" -172.21.0.4 - - [23/Jul/2019:15:47:47 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" -172.21.0.4 - - [23/Jul/2019:15:47:48 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" -172.21.0.4 - - [23/Jul/2019:15:47:49 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" -172.21.0.4 - - [23/Jul/2019:15:47:50 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" -172.21.0.4 - - [23/Jul/2019:15:47:51 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" -172.21.0.4 - - [23/Jul/2019:15:47:52 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" -172.21.0.4 - - [23/Jul/2019:15:47:53 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" -172.21.0.4 - - [23/Jul/2019:15:47:54 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" -172.21.0.4 - - [23/Jul/2019:15:47:55 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" -172.21.0.4 - - [23/Jul/2019:15:47:56 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" -172.21.0.4 - - [23/Jul/2019:15:47:57 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" -172.21.0.4 - - [23/Jul/2019:15:47:58 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" -172.21.0.4 - - [23/Jul/2019:15:47:59 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" -172.21.0.4 - - [23/Jul/2019:15:48:00 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" -172.21.0.4 - - [23/Jul/2019:15:48:01 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" -172.21.0.4 - - [23/Jul/2019:15:48:02 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" -172.21.0.4 - - [23/Jul/2019:15:48:03 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" -172.21.0.4 - - [23/Jul/2019:15:48:04 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" -172.21.0.4 - - [23/Jul/2019:15:48:05 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" -172.21.0.4 - - [23/Jul/2019:15:48:06 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" -172.21.0.4 - - [23/Jul/2019:15:48:07 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" -172.21.0.4 - - [23/Jul/2019:15:48:08 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" -172.21.0.4 - - [23/Jul/2019:15:48:09 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" -172.21.0.4 - - [23/Jul/2019:15:48:10 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" -172.21.0.4 - - [23/Jul/2019:15:48:11 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" -172.21.0.4 - - [23/Jul/2019:15:48:12 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" -172.21.0.4 - - [23/Jul/2019:15:48:13 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" -172.21.0.4 - - [23/Jul/2019:15:48:14 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" -172.21.0.4 - - [23/Jul/2019:15:48:15 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" -172.21.0.4 - - [23/Jul/2019:15:48:16 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" -172.21.0.4 - - [23/Jul/2019:15:48:17 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" -172.21.0.4 - - [23/Jul/2019:15:48:18 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" -172.21.0.4 - - [23/Jul/2019:15:48:19 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" -172.21.0.4 - - [23/Jul/2019:15:48:20 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" -172.21.0.4 - - [23/Jul/2019:15:48:21 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" -172.21.0.4 - - [23/Jul/2019:15:48:22 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" -172.21.0.4 - - [23/Jul/2019:15:48:23 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" -172.21.0.4 - - [23/Jul/2019:15:48:24 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" -172.21.0.4 - - [23/Jul/2019:15:48:25 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" -172.21.0.4 - - [23/Jul/2019:15:48:26 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" -172.21.0.4 - - [23/Jul/2019:15:48:27 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" -172.21.0.4 - - [23/Jul/2019:15:48:28 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" -172.21.0.4 - - [23/Jul/2019:15:48:29 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" -172.21.0.4 - - [23/Jul/2019:15:48:30 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" -172.21.0.4 - - [23/Jul/2019:15:48:31 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" -172.21.0.4 - - [23/Jul/2019:15:48:32 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" -172.21.0.4 - - [23/Jul/2019:15:48:33 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" -172.21.0.4 - - [23/Jul/2019:15:48:34 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" -172.21.0.4 - - [23/Jul/2019:15:48:35 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" -172.21.0.4 - - [23/Jul/2019:15:48:36 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" -172.21.0.4 - - [23/Jul/2019:15:48:37 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" -172.21.0.4 - - [23/Jul/2019:15:48:38 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" -172.21.0.4 - - [23/Jul/2019:15:48:39 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" -172.21.0.4 - - [23/Jul/2019:15:48:40 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" -172.21.0.4 - - [23/Jul/2019:15:48:41 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" -172.21.0.4 - - [23/Jul/2019:15:48:42 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" -172.21.0.4 - - [23/Jul/2019:15:48:43 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" -172.21.0.4 - - [23/Jul/2019:15:48:44 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" -172.21.0.4 - - [23/Jul/2019:15:48:45 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" -172.21.0.4 - - [23/Jul/2019:15:48:46 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" -172.21.0.4 - - [23/Jul/2019:15:48:47 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" -172.21.0.4 - - [23/Jul/2019:15:48:48 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" -172.21.0.4 - - [23/Jul/2019:15:48:49 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" -172.21.0.4 - - [23/Jul/2019:15:48:50 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" -172.21.0.4 - - [23/Jul/2019:15:48:51 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" -172.21.0.4 - - [23/Jul/2019:15:48:52 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" -172.21.0.4 - - [23/Jul/2019:15:48:53 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" -172.21.0.4 - - [23/Jul/2019:15:48:54 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" -172.21.0.4 - - [23/Jul/2019:15:48:55 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" -172.21.0.4 - - [23/Jul/2019:15:48:56 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" -172.21.0.4 - - [23/Jul/2019:15:48:57 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" -172.21.0.4 - - [23/Jul/2019:15:48:58 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" -172.21.0.4 - - [23/Jul/2019:15:48:59 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" -172.21.0.4 - - [23/Jul/2019:15:49:00 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" -172.21.0.4 - - [23/Jul/2019:15:49:01 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" -172.21.0.4 - - [23/Jul/2019:15:49:02 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" -172.21.0.4 - - [23/Jul/2019:15:49:03 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" -172.21.0.4 - - [23/Jul/2019:15:49:04 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" -172.21.0.4 - - [23/Jul/2019:15:49:05 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" -172.21.0.4 - - [23/Jul/2019:15:49:06 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" -172.21.0.4 - - [23/Jul/2019:15:49:07 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" -172.21.0.4 - - [23/Jul/2019:15:49:08 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" -172.21.0.4 - - [23/Jul/2019:15:49:09 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" -172.21.0.4 - - [23/Jul/2019:15:49:10 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" -172.21.0.4 - - [23/Jul/2019:15:49:11 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" -172.21.0.4 - - [23/Jul/2019:15:49:12 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" -172.21.0.4 - - [23/Jul/2019:15:49:13 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" -127.0.0.1 - - [23/Jul/2019:15:49:14 +0000] "OPTIONS * HTTP/1.0" 200 126 "-" "Apache/2.4.38 (Debian) PHP/7.2.20 (internal dummy connection)" -127.0.0.1 - - [23/Jul/2019:15:49:15 +0000] "OPTIONS * HTTP/1.0" 200 126 "-" "Apache/2.4.38 (Debian) PHP/7.2.20 (internal dummy connection)" -172.21.0.4 - - [23/Jul/2019:15:49:38 +0000] "POST /graphql HTTP/1.1" 404 441 "-" "Symfony BrowserKit" -172.25.0.4 - - [23/Jul/2019:15:59:03 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" -172.25.0.4 - - [23/Jul/2019:15:59:04 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" -172.25.0.4 - - [23/Jul/2019:15:59:05 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" -172.25.0.4 - - [23/Jul/2019:15:59:06 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" -172.25.0.4 - - [23/Jul/2019:15:59:07 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" -172.25.0.4 - - [23/Jul/2019:15:59:08 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" -172.25.0.4 - - [23/Jul/2019:15:59:09 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" -172.25.0.4 - - [23/Jul/2019:15:59:10 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" -172.25.0.4 - - [23/Jul/2019:15:59:11 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" -172.25.0.4 - - [23/Jul/2019:15:59:12 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" -172.25.0.4 - - [23/Jul/2019:15:59:13 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" -172.25.0.4 - - [23/Jul/2019:15:59:14 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" -172.25.0.4 - - [23/Jul/2019:15:59:15 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" -172.25.0.4 - - [23/Jul/2019:15:59:16 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" -172.25.0.4 - - [23/Jul/2019:15:59:17 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" -172.25.0.4 - - [23/Jul/2019:15:59:18 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" -172.25.0.4 - - [23/Jul/2019:15:59:19 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" -172.25.0.4 - - [23/Jul/2019:15:59:20 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" -172.25.0.4 - - [23/Jul/2019:15:59:21 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" -172.25.0.4 - - [23/Jul/2019:15:59:22 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" -172.25.0.4 - - [23/Jul/2019:15:59:23 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" -172.25.0.4 - - [23/Jul/2019:15:59:24 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" -172.25.0.4 - - [23/Jul/2019:15:59:25 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" -172.25.0.4 - - [23/Jul/2019:15:59:26 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" -172.25.0.4 - - [23/Jul/2019:15:59:27 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" -172.25.0.4 - - [23/Jul/2019:15:59:28 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" -172.25.0.4 - - [23/Jul/2019:15:59:29 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" -172.25.0.4 - - [23/Jul/2019:15:59:30 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" -172.25.0.4 - - [23/Jul/2019:15:59:31 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" -172.25.0.4 - - [23/Jul/2019:15:59:32 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" -172.25.0.4 - - [23/Jul/2019:15:59:33 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" -172.25.0.4 - - [23/Jul/2019:15:59:34 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" -172.25.0.4 - - [23/Jul/2019:15:59:35 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" -172.25.0.4 - - [23/Jul/2019:15:59:36 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" -172.25.0.4 - - [23/Jul/2019:15:59:37 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" -172.25.0.4 - - [23/Jul/2019:15:59:38 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" -172.25.0.4 - - [23/Jul/2019:15:59:39 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" -172.25.0.4 - - [23/Jul/2019:15:59:40 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" -172.25.0.4 - - [23/Jul/2019:15:59:41 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" -172.25.0.4 - - [23/Jul/2019:15:59:42 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" -172.25.0.4 - - [23/Jul/2019:15:59:43 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" -172.25.0.4 - - [23/Jul/2019:15:59:44 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" -172.25.0.4 - - [23/Jul/2019:15:59:45 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" -172.25.0.4 - - [23/Jul/2019:15:59:46 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" -172.25.0.4 - - [23/Jul/2019:15:59:47 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" -172.25.0.4 - - [23/Jul/2019:15:59:48 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" -172.25.0.4 - - [23/Jul/2019:15:59:49 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" -172.25.0.4 - - [23/Jul/2019:15:59:50 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" -172.25.0.4 - - [23/Jul/2019:15:59:51 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" -172.25.0.4 - - [23/Jul/2019:15:59:52 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" -172.25.0.4 - - [23/Jul/2019:15:59:53 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" -172.25.0.4 - - [23/Jul/2019:15:59:54 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" -172.25.0.4 - - [23/Jul/2019:15:59:55 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" -172.25.0.4 - - [23/Jul/2019:15:59:56 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" -172.25.0.4 - - [23/Jul/2019:15:59:57 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" -172.25.0.4 - - [23/Jul/2019:15:59:58 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" -172.25.0.4 - - [23/Jul/2019:15:59:59 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" -172.25.0.4 - - [23/Jul/2019:16:00:00 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" -172.25.0.4 - - [23/Jul/2019:16:00:01 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" -172.25.0.4 - - [23/Jul/2019:16:00:02 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" -172.25.0.4 - - [23/Jul/2019:16:00:03 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" -172.25.0.4 - - [23/Jul/2019:16:00:04 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" -172.25.0.4 - - [23/Jul/2019:16:00:05 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" -172.25.0.4 - - [23/Jul/2019:16:00:06 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" -172.25.0.4 - - [23/Jul/2019:16:00:07 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" -172.25.0.4 - - [23/Jul/2019:16:00:08 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" -172.25.0.4 - - [23/Jul/2019:16:00:09 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" -172.25.0.4 - - [23/Jul/2019:16:00:10 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" -172.25.0.4 - - [23/Jul/2019:16:00:11 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" -172.25.0.4 - - [23/Jul/2019:16:00:12 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" -172.25.0.4 - - [23/Jul/2019:16:00:13 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" -172.25.0.4 - - [23/Jul/2019:16:00:14 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" -172.25.0.4 - - [23/Jul/2019:16:00:15 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" -172.25.0.4 - - [23/Jul/2019:16:00:16 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" -172.25.0.4 - - [23/Jul/2019:16:00:17 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" -172.25.0.4 - - [23/Jul/2019:16:00:18 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" -172.25.0.4 - - [23/Jul/2019:16:00:19 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" -172.25.0.4 - - [23/Jul/2019:16:00:20 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" -172.25.0.4 - - [23/Jul/2019:16:00:21 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" -172.25.0.4 - - [23/Jul/2019:16:00:22 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" -172.25.0.4 - - [23/Jul/2019:16:00:23 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" -172.25.0.4 - - [23/Jul/2019:16:00:24 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" -172.25.0.4 - - [23/Jul/2019:16:00:25 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" -172.25.0.4 - - [23/Jul/2019:16:00:26 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" -172.25.0.4 - - [23/Jul/2019:16:00:27 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" -172.25.0.4 - - [23/Jul/2019:16:00:28 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" -172.25.0.4 - - [23/Jul/2019:16:00:29 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" -172.25.0.4 - - [23/Jul/2019:16:00:30 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" -172.25.0.4 - - [23/Jul/2019:16:00:31 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" -172.25.0.4 - - [23/Jul/2019:16:00:32 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" -172.25.0.4 - - [23/Jul/2019:16:00:33 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" -172.25.0.4 - - [23/Jul/2019:16:00:34 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" -172.25.0.4 - - [23/Jul/2019:16:00:35 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" -172.25.0.4 - - [23/Jul/2019:16:00:36 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" -172.25.0.4 - - [23/Jul/2019:16:00:37 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" -172.25.0.4 - - [23/Jul/2019:16:00:38 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" -172.25.0.4 - - [23/Jul/2019:16:00:39 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" -172.25.0.4 - - [23/Jul/2019:16:00:40 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" -172.25.0.4 - - [23/Jul/2019:16:00:41 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" -172.25.0.4 - - [23/Jul/2019:16:00:42 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" -172.25.0.4 - - [23/Jul/2019:16:00:43 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" -172.25.0.4 - - [23/Jul/2019:16:00:44 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" -172.25.0.4 - - [23/Jul/2019:16:00:45 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" -172.25.0.4 - - [23/Jul/2019:16:00:46 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" -172.25.0.4 - - [23/Jul/2019:16:00:47 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" -172.25.0.4 - - [23/Jul/2019:16:00:48 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" -172.25.0.4 - - [23/Jul/2019:16:00:49 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" -172.25.0.4 - - [23/Jul/2019:16:00:50 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" -172.25.0.4 - - [23/Jul/2019:16:00:51 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" -172.25.0.4 - - [23/Jul/2019:16:00:52 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" -172.25.0.4 - - [23/Jul/2019:16:00:53 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" -172.25.0.4 - - [23/Jul/2019:16:00:54 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" -172.25.0.4 - - [23/Jul/2019:16:00:55 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" -172.25.0.4 - - [23/Jul/2019:16:00:56 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" -172.25.0.4 - - [23/Jul/2019:16:00:57 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" -172.25.0.4 - - [23/Jul/2019:16:00:58 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" -172.25.0.4 - - [23/Jul/2019:16:00:59 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" -172.25.0.4 - - [23/Jul/2019:16:01:00 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" -172.25.0.4 - - [23/Jul/2019:16:01:01 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" -172.25.0.4 - - [23/Jul/2019:16:01:02 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" -172.25.0.4 - - [23/Jul/2019:16:01:03 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" -172.25.0.4 - - [23/Jul/2019:16:01:04 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" -172.25.0.4 - - [23/Jul/2019:16:01:05 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" -127.0.0.1 - - [23/Jul/2019:16:01:06 +0000] "OPTIONS * HTTP/1.0" 200 126 "-" "Apache/2.4.38 (Debian) PHP/7.2.20 (internal dummy connection)" -127.0.0.1 - - [23/Jul/2019:16:01:07 +0000] "OPTIONS * HTTP/1.0" 200 126 "-" "Apache/2.4.38 (Debian) PHP/7.2.20 (internal dummy connection)" -172.25.0.4 - - [23/Jul/2019:16:01:35 +0000] "POST /graphql HTTP/1.1" 404 441 "-" "Symfony BrowserKit" -172.25.0.4 - - [23/Jul/2019:16:18:04 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" -172.25.0.4 - - [23/Jul/2019:16:18:05 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" -172.25.0.4 - - [23/Jul/2019:16:18:06 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" -172.25.0.4 - - [23/Jul/2019:16:18:07 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" -172.25.0.4 - - [23/Jul/2019:16:18:08 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" -172.25.0.4 - - [23/Jul/2019:16:18:09 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" -172.25.0.4 - - [23/Jul/2019:16:18:10 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" -172.25.0.4 - - [23/Jul/2019:16:18:11 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" -172.25.0.4 - - [23/Jul/2019:16:18:12 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" -172.25.0.4 - - [23/Jul/2019:16:18:13 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" -172.25.0.4 - - [23/Jul/2019:16:18:14 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" -172.25.0.4 - - [23/Jul/2019:16:18:15 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" -172.25.0.4 - - [23/Jul/2019:16:18:16 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" -172.25.0.4 - - [23/Jul/2019:16:18:17 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" -172.25.0.4 - - [23/Jul/2019:16:18:18 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" -172.25.0.4 - - [23/Jul/2019:16:18:19 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" -172.25.0.4 - - [23/Jul/2019:16:18:20 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" -172.25.0.4 - - [23/Jul/2019:16:18:21 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" -172.25.0.4 - - [23/Jul/2019:16:18:22 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" -172.25.0.4 - - [23/Jul/2019:16:18:23 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" -172.25.0.4 - - [23/Jul/2019:16:18:24 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" -172.25.0.4 - - [23/Jul/2019:16:18:25 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" -172.25.0.4 - - [23/Jul/2019:16:18:26 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" -172.25.0.4 - - [23/Jul/2019:16:18:27 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" -172.25.0.4 - - [23/Jul/2019:16:18:28 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" -172.25.0.4 - - [23/Jul/2019:16:18:29 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" -172.25.0.4 - - [23/Jul/2019:16:18:30 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" -172.25.0.4 - - [23/Jul/2019:16:18:31 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" -172.25.0.4 - - [23/Jul/2019:16:18:32 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" -172.25.0.4 - - [23/Jul/2019:16:18:33 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" -172.25.0.4 - - [23/Jul/2019:16:18:34 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" -172.25.0.4 - - [23/Jul/2019:16:18:35 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" -172.25.0.4 - - [23/Jul/2019:16:18:36 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" -172.25.0.4 - - [23/Jul/2019:16:18:37 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" -172.25.0.4 - - [23/Jul/2019:16:18:38 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" -172.25.0.4 - - [23/Jul/2019:16:18:39 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" -172.25.0.4 - - [23/Jul/2019:16:18:40 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" -172.25.0.4 - - [23/Jul/2019:16:18:41 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" -172.25.0.4 - - [23/Jul/2019:16:18:42 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" -172.25.0.4 - - [23/Jul/2019:16:18:43 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" -172.25.0.4 - - [23/Jul/2019:16:18:44 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" -172.25.0.4 - - [23/Jul/2019:16:18:45 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" -172.25.0.4 - - [23/Jul/2019:16:18:46 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" -172.25.0.4 - - [23/Jul/2019:16:18:47 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" -172.25.0.4 - - [23/Jul/2019:16:18:48 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" -172.25.0.4 - - [23/Jul/2019:16:18:49 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" -172.25.0.4 - - [23/Jul/2019:16:18:50 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" -172.25.0.4 - - [23/Jul/2019:16:18:51 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" -172.25.0.4 - - [23/Jul/2019:16:18:52 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" -172.25.0.4 - - [23/Jul/2019:16:18:53 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" -172.25.0.4 - - [23/Jul/2019:16:18:54 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" -172.25.0.4 - - [23/Jul/2019:16:18:55 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" -172.25.0.4 - - [23/Jul/2019:16:18:56 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" -172.25.0.4 - - [23/Jul/2019:16:18:57 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" -172.25.0.4 - - [23/Jul/2019:16:18:58 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" -172.25.0.4 - - [23/Jul/2019:16:18:59 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" -172.25.0.4 - - [23/Jul/2019:16:19:00 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" -172.25.0.4 - - [23/Jul/2019:16:19:01 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" -172.25.0.4 - - [23/Jul/2019:16:19:02 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" -172.25.0.4 - - [23/Jul/2019:16:19:03 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" -172.25.0.4 - - [23/Jul/2019:16:19:04 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" -172.25.0.4 - - [23/Jul/2019:16:19:05 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" -172.25.0.4 - - [23/Jul/2019:16:19:06 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" -172.25.0.4 - - [23/Jul/2019:16:19:07 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" -172.25.0.4 - - [23/Jul/2019:16:19:08 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" -172.25.0.4 - - [23/Jul/2019:16:19:09 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" -172.25.0.4 - - [23/Jul/2019:16:19:10 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" -172.25.0.4 - - [23/Jul/2019:16:19:11 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" -172.25.0.4 - - [23/Jul/2019:16:19:12 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" -172.25.0.4 - - [23/Jul/2019:16:19:13 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" -172.25.0.4 - - [23/Jul/2019:16:19:14 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" -172.25.0.4 - - [23/Jul/2019:16:19:15 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" -172.25.0.4 - - [23/Jul/2019:16:19:16 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" -172.25.0.4 - - [23/Jul/2019:16:19:17 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" -172.25.0.4 - - [23/Jul/2019:16:19:18 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" -172.25.0.4 - - [23/Jul/2019:16:19:19 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" -172.25.0.4 - - [23/Jul/2019:16:19:20 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" -172.25.0.4 - - [23/Jul/2019:16:19:21 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" -172.25.0.4 - - [23/Jul/2019:16:19:22 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" -172.25.0.4 - - [23/Jul/2019:16:19:23 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" -172.25.0.4 - - [23/Jul/2019:16:19:24 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" -172.25.0.4 - - [23/Jul/2019:16:19:25 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" -172.25.0.4 - - [23/Jul/2019:16:19:26 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" -172.25.0.4 - - [23/Jul/2019:16:19:27 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" -172.25.0.4 - - [23/Jul/2019:16:19:28 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" -172.25.0.4 - - [23/Jul/2019:16:19:29 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" -172.25.0.4 - - [23/Jul/2019:16:19:30 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" -172.25.0.4 - - [23/Jul/2019:16:19:31 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" -172.25.0.4 - - [23/Jul/2019:16:19:32 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" -172.25.0.4 - - [23/Jul/2019:16:19:33 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" -172.25.0.4 - - [23/Jul/2019:16:19:34 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" -172.25.0.4 - - [23/Jul/2019:16:19:35 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" -172.25.0.4 - - [23/Jul/2019:16:19:36 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" -172.25.0.4 - - [23/Jul/2019:16:19:37 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" -172.25.0.4 - - [23/Jul/2019:16:19:38 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" -172.25.0.4 - - [23/Jul/2019:16:19:39 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" -172.25.0.4 - - [23/Jul/2019:16:19:40 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" -172.25.0.4 - - [23/Jul/2019:16:19:41 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" -172.25.0.4 - - [23/Jul/2019:16:19:42 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" -172.25.0.4 - - [23/Jul/2019:16:19:43 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" -172.25.0.4 - - [23/Jul/2019:16:19:44 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" -172.25.0.4 - - [23/Jul/2019:16:19:45 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" -172.25.0.4 - - [23/Jul/2019:16:19:46 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" -172.25.0.4 - - [23/Jul/2019:16:19:47 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" -172.25.0.4 - - [23/Jul/2019:16:19:48 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" -172.25.0.4 - - [23/Jul/2019:16:19:49 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" -172.25.0.4 - - [23/Jul/2019:16:19:50 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" -172.25.0.4 - - [23/Jul/2019:16:19:51 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" -172.25.0.4 - - [23/Jul/2019:16:19:52 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" -172.25.0.4 - - [23/Jul/2019:16:19:53 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" -172.25.0.4 - - [23/Jul/2019:16:19:54 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" -172.25.0.4 - - [23/Jul/2019:16:19:55 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" -172.25.0.4 - - [23/Jul/2019:16:19:56 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" -172.25.0.4 - - [23/Jul/2019:16:19:57 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" -172.25.0.4 - - [23/Jul/2019:16:19:58 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" -172.25.0.4 - - [23/Jul/2019:16:19:59 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" -172.25.0.4 - - [23/Jul/2019:16:20:00 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" -172.25.0.4 - - [23/Jul/2019:16:20:01 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" -172.25.0.4 - - [23/Jul/2019:16:20:02 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" -172.25.0.4 - - [23/Jul/2019:16:20:03 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" -172.25.0.4 - - [23/Jul/2019:16:20:04 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" -172.25.0.4 - - [23/Jul/2019:16:20:05 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" -172.25.0.4 - - [23/Jul/2019:16:20:06 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" -172.25.0.4 - - [23/Jul/2019:16:20:07 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" -172.25.0.4 - - [23/Jul/2019:16:20:08 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" -172.25.0.4 - - [23/Jul/2019:16:20:09 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" -172.25.0.4 - - [23/Jul/2019:16:20:10 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" -172.25.0.4 - - [23/Jul/2019:16:20:11 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" -172.25.0.4 - - [23/Jul/2019:16:20:12 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" -172.25.0.4 - - [23/Jul/2019:16:20:13 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" -172.25.0.4 - - [23/Jul/2019:16:20:14 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" -172.25.0.4 - - [23/Jul/2019:16:20:15 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" -172.25.0.4 - - [23/Jul/2019:16:20:16 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" -172.25.0.4 - - [23/Jul/2019:16:20:17 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" -172.25.0.4 - - [23/Jul/2019:16:20:18 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" -172.25.0.4 - - [23/Jul/2019:16:20:19 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" -172.25.0.4 - - [23/Jul/2019:16:20:20 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" -172.25.0.4 - - [23/Jul/2019:16:20:21 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" -172.25.0.4 - - [23/Jul/2019:16:20:22 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" -172.25.0.4 - - [23/Jul/2019:16:20:23 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" -172.25.0.4 - - [23/Jul/2019:16:20:24 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" -172.25.0.4 - - [23/Jul/2019:16:20:25 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" -172.25.0.4 - - [23/Jul/2019:16:20:26 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" -172.25.0.4 - - [23/Jul/2019:16:20:27 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" -172.25.0.4 - - [23/Jul/2019:16:20:28 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" -172.25.0.4 - - [23/Jul/2019:16:20:29 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" -172.25.0.4 - - [23/Jul/2019:16:20:30 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" -172.25.0.4 - - [23/Jul/2019:16:20:31 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" -172.25.0.4 - - [23/Jul/2019:16:20:32 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" -172.25.0.4 - - [23/Jul/2019:16:20:33 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" -172.25.0.4 - - [23/Jul/2019:16:20:34 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" -172.25.0.4 - - [23/Jul/2019:16:20:35 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" -172.25.0.4 - - [23/Jul/2019:16:20:36 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" -172.25.0.4 - - [23/Jul/2019:16:20:37 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" -172.25.0.4 - - [23/Jul/2019:16:20:38 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" -172.25.0.4 - - [23/Jul/2019:16:20:39 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" -172.25.0.4 - - [23/Jul/2019:16:20:40 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" -172.25.0.4 - - [23/Jul/2019:16:20:41 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" -172.25.0.4 - - [23/Jul/2019:16:20:42 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" -172.25.0.4 - - [23/Jul/2019:16:20:43 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" -172.25.0.4 - - [23/Jul/2019:16:20:44 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" -172.25.0.4 - - [23/Jul/2019:16:20:45 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" -172.25.0.4 - - [23/Jul/2019:16:20:46 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" -172.25.0.4 - - [23/Jul/2019:16:20:47 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" -172.25.0.4 - - [23/Jul/2019:16:20:48 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" -172.25.0.4 - - [23/Jul/2019:16:20:49 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" -172.25.0.4 - - [23/Jul/2019:16:20:50 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" -172.25.0.4 - - [23/Jul/2019:16:20:51 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" -172.25.0.4 - - [23/Jul/2019:16:20:52 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" -172.25.0.4 - - [23/Jul/2019:16:20:53 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" -172.25.0.4 - - [23/Jul/2019:16:20:54 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" -172.25.0.4 - - [23/Jul/2019:16:20:55 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" -172.25.0.4 - - [23/Jul/2019:16:20:56 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" -172.25.0.4 - - [23/Jul/2019:16:20:57 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" -172.25.0.4 - - [23/Jul/2019:16:20:58 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" -172.25.0.4 - - [23/Jul/2019:16:20:59 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" -172.25.0.4 - - [23/Jul/2019:16:21:00 +0000] "GET /graphql HTTP/1.1" 404 441 "-" "Go-http-client/1.1" -127.0.0.1 - - [23/Jul/2019:16:21:01 +0000] "OPTIONS * HTTP/1.0" 200 126 "-" "Apache/2.4.38 (Debian) PHP/7.2.20 (internal dummy connection)" -127.0.0.1 - - [23/Jul/2019:16:21:02 +0000] "OPTIONS * HTTP/1.0" 200 126 "-" "Apache/2.4.38 (Debian) PHP/7.2.20 (internal dummy connection)" -172.25.0.4 - - [23/Jul/2019:16:22:08 +0000] "POST /graphql HTTP/1.1" 404 441 "-" "Symfony BrowserKit" -192.168.32.4 - - [23/Jul/2019:17:20:41 +0000] "GET /graphql HTTP/1.1" 404 443 "-" "Go-http-client/1.1" -192.168.32.4 - - [23/Jul/2019:17:20:42 +0000] "GET /graphql HTTP/1.1" 404 443 "-" "Go-http-client/1.1" -192.168.32.4 - - [23/Jul/2019:17:20:43 +0000] "GET /graphql HTTP/1.1" 404 443 "-" "Go-http-client/1.1" -192.168.32.4 - - [23/Jul/2019:17:20:44 +0000] "GET /graphql HTTP/1.1" 404 443 "-" "Go-http-client/1.1" -192.168.32.4 - - [23/Jul/2019:17:20:45 +0000] "GET /graphql HTTP/1.1" 404 443 "-" "Go-http-client/1.1" -192.168.32.4 - - [23/Jul/2019:17:20:46 +0000] "GET /graphql HTTP/1.1" 404 443 "-" "Go-http-client/1.1" -192.168.32.4 - - [23/Jul/2019:17:20:47 +0000] "GET /graphql HTTP/1.1" 404 443 "-" "Go-http-client/1.1" -192.168.32.4 - - [23/Jul/2019:17:20:48 +0000] "GET /graphql HTTP/1.1" 404 443 "-" "Go-http-client/1.1" -192.168.32.4 - - [23/Jul/2019:17:20:49 +0000] "GET /graphql HTTP/1.1" 404 443 "-" "Go-http-client/1.1" -192.168.32.4 - - [23/Jul/2019:17:20:50 +0000] "GET /graphql HTTP/1.1" 404 443 "-" "Go-http-client/1.1" -192.168.32.4 - - [23/Jul/2019:17:20:51 +0000] "GET /graphql HTTP/1.1" 404 443 "-" "Go-http-client/1.1" -192.168.32.4 - - [23/Jul/2019:17:20:52 +0000] "GET /graphql HTTP/1.1" 404 443 "-" "Go-http-client/1.1" -192.168.32.4 - - [23/Jul/2019:17:20:53 +0000] "GET /graphql HTTP/1.1" 404 443 "-" "Go-http-client/1.1" -192.168.32.4 - - [23/Jul/2019:17:20:54 +0000] "GET /graphql HTTP/1.1" 404 443 "-" "Go-http-client/1.1" -192.168.32.4 - - [23/Jul/2019:17:20:55 +0000] "GET /graphql HTTP/1.1" 404 443 "-" "Go-http-client/1.1" -192.168.32.4 - - [23/Jul/2019:17:20:56 +0000] "GET /graphql HTTP/1.1" 404 443 "-" "Go-http-client/1.1" -192.168.32.4 - - [23/Jul/2019:17:20:57 +0000] "GET /graphql HTTP/1.1" 404 443 "-" "Go-http-client/1.1" -192.168.32.4 - - [23/Jul/2019:17:20:58 +0000] "GET /graphql HTTP/1.1" 404 443 "-" "Go-http-client/1.1" -192.168.32.4 - - [23/Jul/2019:17:20:59 +0000] "GET /graphql HTTP/1.1" 404 443 "-" "Go-http-client/1.1" -192.168.32.4 - - [23/Jul/2019:17:21:00 +0000] "GET /graphql HTTP/1.1" 404 443 "-" "Go-http-client/1.1" -192.168.32.4 - - [23/Jul/2019:17:21:01 +0000] "GET /graphql HTTP/1.1" 404 443 "-" "Go-http-client/1.1" -192.168.32.4 - - [23/Jul/2019:17:21:02 +0000] "GET /graphql HTTP/1.1" 404 443 "-" "Go-http-client/1.1" -192.168.32.4 - - [23/Jul/2019:17:21:03 +0000] "GET /graphql HTTP/1.1" 404 443 "-" "Go-http-client/1.1" -192.168.32.4 - - [23/Jul/2019:17:21:04 +0000] "GET /graphql HTTP/1.1" 404 443 "-" "Go-http-client/1.1" -192.168.32.4 - - [23/Jul/2019:17:21:05 +0000] "GET /graphql HTTP/1.1" 404 443 "-" "Go-http-client/1.1" -192.168.32.4 - - [23/Jul/2019:17:21:06 +0000] "GET /graphql HTTP/1.1" 404 443 "-" "Go-http-client/1.1" -192.168.32.4 - - [23/Jul/2019:17:21:07 +0000] "GET /graphql HTTP/1.1" 404 443 "-" "Go-http-client/1.1" -192.168.32.4 - - [23/Jul/2019:17:21:08 +0000] "GET /graphql HTTP/1.1" 404 443 "-" "Go-http-client/1.1" -192.168.32.4 - - [23/Jul/2019:17:21:09 +0000] "GET /graphql HTTP/1.1" 404 443 "-" "Go-http-client/1.1" -192.168.32.4 - - [23/Jul/2019:17:21:10 +0000] "GET /graphql HTTP/1.1" 404 443 "-" "Go-http-client/1.1" -192.168.32.4 - - [23/Jul/2019:17:21:11 +0000] "GET /graphql HTTP/1.1" 404 443 "-" "Go-http-client/1.1" -192.168.32.4 - - [23/Jul/2019:17:21:12 +0000] "GET /graphql HTTP/1.1" 404 443 "-" "Go-http-client/1.1" -192.168.32.4 - - [23/Jul/2019:17:21:13 +0000] "GET /graphql HTTP/1.1" 404 443 "-" "Go-http-client/1.1" -192.168.32.4 - - [23/Jul/2019:17:21:14 +0000] "GET /graphql HTTP/1.1" 404 443 "-" "Go-http-client/1.1" -192.168.32.4 - - [23/Jul/2019:17:21:15 +0000] "GET /graphql HTTP/1.1" 404 443 "-" "Go-http-client/1.1" -192.168.32.4 - - [23/Jul/2019:17:21:16 +0000] "GET /graphql HTTP/1.1" 404 443 "-" "Go-http-client/1.1" -192.168.32.4 - - [23/Jul/2019:17:21:17 +0000] "GET /graphql HTTP/1.1" 404 443 "-" "Go-http-client/1.1" -192.168.32.4 - - [23/Jul/2019:17:21:18 +0000] "GET /graphql HTTP/1.1" 404 443 "-" "Go-http-client/1.1" -192.168.32.4 - - [23/Jul/2019:17:21:19 +0000] "GET /graphql HTTP/1.1" 404 443 "-" "Go-http-client/1.1" -192.168.32.4 - - [23/Jul/2019:17:21:20 +0000] "GET /graphql HTTP/1.1" 404 443 "-" "Go-http-client/1.1" -192.168.32.4 - - [23/Jul/2019:17:21:21 +0000] "GET /graphql HTTP/1.1" 404 443 "-" "Go-http-client/1.1" -192.168.32.4 - - [23/Jul/2019:17:21:22 +0000] "GET /graphql HTTP/1.1" 404 443 "-" "Go-http-client/1.1" -192.168.32.4 - - [23/Jul/2019:17:21:23 +0000] "GET /graphql HTTP/1.1" 404 443 "-" "Go-http-client/1.1" -192.168.32.4 - - [23/Jul/2019:17:21:24 +0000] "GET /graphql HTTP/1.1" 404 443 "-" "Go-http-client/1.1" -192.168.32.4 - - [23/Jul/2019:17:21:25 +0000] "GET /graphql HTTP/1.1" 404 443 "-" "Go-http-client/1.1" -192.168.32.4 - - [23/Jul/2019:17:21:26 +0000] "GET /graphql HTTP/1.1" 404 443 "-" "Go-http-client/1.1" -192.168.32.4 - - [23/Jul/2019:17:21:27 +0000] "GET /graphql HTTP/1.1" 404 443 "-" "Go-http-client/1.1" -192.168.32.4 - - [23/Jul/2019:17:21:28 +0000] "GET /graphql HTTP/1.1" 404 443 "-" "Go-http-client/1.1" -192.168.32.4 - - [23/Jul/2019:17:21:29 +0000] "GET /graphql HTTP/1.1" 404 443 "-" "Go-http-client/1.1" -192.168.32.4 - - [23/Jul/2019:17:21:30 +0000] "GET /graphql HTTP/1.1" 404 443 "-" "Go-http-client/1.1" -192.168.32.4 - - [23/Jul/2019:17:21:31 +0000] "GET /graphql HTTP/1.1" 404 443 "-" "Go-http-client/1.1" -192.168.32.4 - - [23/Jul/2019:17:21:32 +0000] "GET /graphql HTTP/1.1" 404 443 "-" "Go-http-client/1.1" -192.168.32.4 - - [23/Jul/2019:17:21:33 +0000] "GET /graphql HTTP/1.1" 404 443 "-" "Go-http-client/1.1" -192.168.32.4 - - [23/Jul/2019:17:21:34 +0000] "GET /graphql HTTP/1.1" 404 443 "-" "Go-http-client/1.1" -192.168.32.4 - - [23/Jul/2019:17:21:35 +0000] "GET /graphql HTTP/1.1" 404 443 "-" "Go-http-client/1.1" -192.168.32.4 - - [23/Jul/2019:17:21:36 +0000] "GET /graphql HTTP/1.1" 404 443 "-" "Go-http-client/1.1" -192.168.32.4 - - [23/Jul/2019:17:21:37 +0000] "GET /graphql HTTP/1.1" 404 443 "-" "Go-http-client/1.1" -192.168.32.4 - - [23/Jul/2019:17:21:38 +0000] "GET /graphql HTTP/1.1" 404 443 "-" "Go-http-client/1.1" -192.168.32.4 - - [23/Jul/2019:17:21:39 +0000] "GET /graphql HTTP/1.1" 404 443 "-" "Go-http-client/1.1" -192.168.32.4 - - [23/Jul/2019:17:21:40 +0000] "GET /graphql HTTP/1.1" 404 443 "-" "Go-http-client/1.1" -192.168.32.4 - - [23/Jul/2019:17:21:41 +0000] "GET /graphql HTTP/1.1" 404 443 "-" "Go-http-client/1.1" -192.168.32.4 - - [23/Jul/2019:17:21:42 +0000] "GET /graphql HTTP/1.1" 404 443 "-" "Go-http-client/1.1" -192.168.32.4 - - [23/Jul/2019:17:21:43 +0000] "GET /graphql HTTP/1.1" 404 443 "-" "Go-http-client/1.1" -192.168.32.4 - - [23/Jul/2019:17:21:44 +0000] "GET /graphql HTTP/1.1" 404 443 "-" "Go-http-client/1.1" -192.168.32.4 - - [23/Jul/2019:17:21:45 +0000] "GET /graphql HTTP/1.1" 404 443 "-" "Go-http-client/1.1" -192.168.32.4 - - [23/Jul/2019:17:21:46 +0000] "GET /graphql HTTP/1.1" 404 443 "-" "Go-http-client/1.1" -192.168.32.4 - - [23/Jul/2019:17:21:47 +0000] "GET /graphql HTTP/1.1" 404 443 "-" "Go-http-client/1.1" -192.168.32.4 - - [23/Jul/2019:17:21:48 +0000] "GET /graphql HTTP/1.1" 404 443 "-" "Go-http-client/1.1" -192.168.32.4 - - [23/Jul/2019:17:21:49 +0000] "GET /graphql HTTP/1.1" 404 443 "-" "Go-http-client/1.1" -192.168.32.4 - - [23/Jul/2019:17:21:50 +0000] "GET /graphql HTTP/1.1" 404 443 "-" "Go-http-client/1.1" -192.168.32.4 - - [23/Jul/2019:17:21:51 +0000] "GET /graphql HTTP/1.1" 404 443 "-" "Go-http-client/1.1" -192.168.32.4 - - [23/Jul/2019:17:21:52 +0000] "GET /graphql HTTP/1.1" 404 443 "-" "Go-http-client/1.1" -192.168.32.4 - - [23/Jul/2019:17:21:53 +0000] "GET /graphql HTTP/1.1" 404 443 "-" "Go-http-client/1.1" -192.168.32.4 - - [23/Jul/2019:17:21:54 +0000] "GET /graphql HTTP/1.1" 404 443 "-" "Go-http-client/1.1" -192.168.32.4 - - [23/Jul/2019:17:21:55 +0000] "GET /graphql HTTP/1.1" 404 443 "-" "Go-http-client/1.1" -192.168.32.4 - - [23/Jul/2019:17:21:56 +0000] "GET /graphql HTTP/1.1" 404 443 "-" "Go-http-client/1.1" -192.168.32.4 - - [23/Jul/2019:17:21:57 +0000] "GET /graphql HTTP/1.1" 404 443 "-" "Go-http-client/1.1" -192.168.32.4 - - [23/Jul/2019:17:21:58 +0000] "GET /graphql HTTP/1.1" 404 443 "-" "Go-http-client/1.1" -192.168.32.4 - - [23/Jul/2019:17:21:59 +0000] "GET /graphql HTTP/1.1" 404 443 "-" "Go-http-client/1.1" -192.168.32.4 - - [23/Jul/2019:17:22:00 +0000] "GET /graphql HTTP/1.1" 404 443 "-" "Go-http-client/1.1" -192.168.32.4 - - [23/Jul/2019:17:22:01 +0000] "GET /graphql HTTP/1.1" 404 443 "-" "Go-http-client/1.1" -192.168.32.4 - - [23/Jul/2019:17:22:02 +0000] "GET /graphql HTTP/1.1" 404 443 "-" "Go-http-client/1.1" -192.168.32.4 - - [23/Jul/2019:17:22:03 +0000] "GET /graphql HTTP/1.1" 404 443 "-" "Go-http-client/1.1" -192.168.32.4 - - [23/Jul/2019:17:22:04 +0000] "GET /graphql HTTP/1.1" 404 443 "-" "Go-http-client/1.1" -192.168.32.4 - - [23/Jul/2019:17:22:05 +0000] "GET /graphql HTTP/1.1" 404 443 "-" "Go-http-client/1.1" -192.168.32.4 - - [23/Jul/2019:17:22:06 +0000] "GET /graphql HTTP/1.1" 404 443 "-" "Go-http-client/1.1" -192.168.32.4 - - [23/Jul/2019:17:22:07 +0000] "GET /graphql HTTP/1.1" 404 443 "-" "Go-http-client/1.1" -192.168.32.4 - - [23/Jul/2019:17:22:08 +0000] "GET /graphql HTTP/1.1" 404 443 "-" "Go-http-client/1.1" -192.168.32.4 - - [23/Jul/2019:17:22:09 +0000] "GET /graphql HTTP/1.1" 404 443 "-" "Go-http-client/1.1" -192.168.32.4 - - [23/Jul/2019:17:22:10 +0000] "GET /graphql HTTP/1.1" 404 443 "-" "Go-http-client/1.1" -192.168.32.4 - - [23/Jul/2019:17:22:11 +0000] "GET /graphql HTTP/1.1" 404 443 "-" "Go-http-client/1.1" -192.168.32.4 - - [23/Jul/2019:17:22:12 +0000] "GET /graphql HTTP/1.1" 404 443 "-" "Go-http-client/1.1" -192.168.32.4 - - [23/Jul/2019:17:22:13 +0000] "GET /graphql HTTP/1.1" 404 443 "-" "Go-http-client/1.1" -192.168.32.4 - - [23/Jul/2019:17:22:14 +0000] "GET /graphql HTTP/1.1" 404 443 "-" "Go-http-client/1.1" -192.168.32.4 - - [23/Jul/2019:17:22:15 +0000] "GET /graphql HTTP/1.1" 404 443 "-" "Go-http-client/1.1" -192.168.32.4 - - [23/Jul/2019:17:22:16 +0000] "GET /graphql HTTP/1.1" 404 443 "-" "Go-http-client/1.1" -192.168.32.4 - - [23/Jul/2019:17:22:17 +0000] "GET /graphql HTTP/1.1" 404 443 "-" "Go-http-client/1.1" -192.168.32.4 - - [23/Jul/2019:17:22:18 +0000] "GET /graphql HTTP/1.1" 404 443 "-" "Go-http-client/1.1" -192.168.32.4 - - [23/Jul/2019:17:22:19 +0000] "GET /graphql HTTP/1.1" 404 443 "-" "Go-http-client/1.1" -192.168.32.4 - - [23/Jul/2019:17:22:20 +0000] "GET /graphql HTTP/1.1" 404 443 "-" "Go-http-client/1.1" -192.168.32.4 - - [23/Jul/2019:17:22:21 +0000] "GET /graphql HTTP/1.1" 404 443 "-" "Go-http-client/1.1" -192.168.32.4 - - [23/Jul/2019:17:22:22 +0000] "GET /graphql HTTP/1.1" 404 443 "-" "Go-http-client/1.1" -192.168.32.4 - - [23/Jul/2019:17:22:23 +0000] "GET /graphql HTTP/1.1" 404 443 "-" "Go-http-client/1.1" -192.168.32.4 - - [23/Jul/2019:17:22:24 +0000] "GET /graphql HTTP/1.1" 404 443 "-" "Go-http-client/1.1" -192.168.32.4 - - [23/Jul/2019:17:22:25 +0000] "GET /graphql HTTP/1.1" 404 443 "-" "Go-http-client/1.1" -192.168.32.4 - - [23/Jul/2019:17:22:26 +0000] "GET /graphql HTTP/1.1" 404 443 "-" "Go-http-client/1.1" -192.168.32.4 - - [23/Jul/2019:17:22:27 +0000] "GET /graphql HTTP/1.1" 404 443 "-" "Go-http-client/1.1" -192.168.32.4 - - [23/Jul/2019:17:22:28 +0000] "GET /graphql HTTP/1.1" 404 443 "-" "Go-http-client/1.1" -127.0.0.1 - - [23/Jul/2019:17:22:29 +0000] "OPTIONS * HTTP/1.0" 200 126 "-" "Apache/2.4.38 (Debian) PHP/7.2.20 (internal dummy connection)" -127.0.0.1 - - [23/Jul/2019:17:22:30 +0000] "OPTIONS * HTTP/1.0" 200 126 "-" "Apache/2.4.38 (Debian) PHP/7.2.20 (internal dummy connection)" -127.0.0.1 - - [23/Jul/2019:17:22:31 +0000] "OPTIONS * HTTP/1.0" 200 126 "-" "Apache/2.4.38 (Debian) PHP/7.2.20 (internal dummy connection)" -192.168.32.4 - - [23/Jul/2019:17:22:56 +0000] "POST /graphql HTTP/1.1" 404 443 "-" "Symfony BrowserKit" diff --git a/.log/app/access.log b/.log/app/access.log deleted file mode 100644 index 434e92ef9..000000000 --- a/.log/app/access.log +++ /dev/null @@ -1,81 +0,0 @@ -192.168.176.1 - - [23/Jul/2019:23:10:29 +0000] "GET /graphql HTTP/1.1" 200 758 "-" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/75.0.3770.100 Safari/537.36" -192.168.176.1 - - [23/Jul/2019:23:10:31 +0000] "GET /favicon.ico HTTP/1.1" 200 228 "http://localhost:8001/graphql" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/75.0.3770.100 Safari/537.36" -127.0.0.1 - - [23/Jul/2019:23:10:32 +0000] "POST /wp-admin/admin-ajax.php?action=wp_1_wc_privacy_cleanup&nonce=fe8313edf5 HTTP/1.1" 200 492 "http://localhost/wp-admin/admin-ajax.php?action=wp_1_wc_privacy_cleanup&nonce=fe8313edf5" "WordPress/5.2.2; http://localhost" -127.0.0.1 - - [23/Jul/2019:23:10:30 +0000] "POST /wp-cron.php?doing_wp_cron=1563923430.3347780704498291015625 HTTP/1.1" 200 192 "http://localhost/wp-cron.php?doing_wp_cron=1563923430.3347780704498291015625" "WordPress/5.2.2; http://localhost" -192.168.176.1 - - [23/Jul/2019:23:14:18 +0000] "GET /graphql HTTP/1.1" 200 758 "-" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/75.0.3770.100 Safari/537.36" -192.168.176.1 - - [23/Jul/2019:23:14:19 +0000] "GET /favicon.ico HTTP/1.1" 200 228 "http://localhost:8001/graphql" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/75.0.3770.100 Safari/537.36" -192.168.176.1 - - [23/Jul/2019:23:14:42 +0000] "GET /wp-admin HTTP/1.1" 301 584 "-" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/75.0.3770.100 Safari/537.36" -127.0.0.1 - - [23/Jul/2019:23:14:43 +0000] "POST /wp-cron.php?doing_wp_cron=1563923682.8695790767669677734375 HTTP/1.1" 200 192 "http://localhost/wp-cron.php?doing_wp_cron=1563923682.8695790767669677734375" "WordPress/5.2.2; http://localhost" -192.168.176.1 - - [23/Jul/2019:23:14:42 +0000] "GET /wp-admin/ HTTP/1.1" 302 470 "-" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/75.0.3770.100 Safari/537.36" -192.168.176.1 - - [23/Jul/2019:23:15:34 +0000] "-" 408 0 "-" "-" -192.168.240.1 - - [23/Jul/2019:23:22:52 +0000] "GET /graphql HTTP/1.1" 200 758 "-" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/75.0.3770.100 Safari/537.36" -192.168.240.1 - - [23/Jul/2019:23:22:54 +0000] "GET /favicon.ico HTTP/1.1" 200 228 "http://localhost:8001/graphql" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/75.0.3770.100 Safari/537.36" -192.168.240.1 - - [23/Jul/2019:23:22:56 +0000] "GET /wp-admin/ HTTP/1.1" 302 475 "-" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/75.0.3770.100 Safari/537.36" -192.168.240.1 - - [23/Jul/2019:23:22:57 +0000] "GET /wp-login.php?redirect_to=http%3A%2F%2Flocalhost%3A8001%2Fwp-admin%2F&reauth=1 HTTP/1.1" 200 3784 "-" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/75.0.3770.100 Safari/537.36" -192.168.240.1 - - [23/Jul/2019:23:22:57 +0000] "GET /wp-includes/css/dashicons.min.css?ver=5.2.2 HTTP/1.1" 200 28819 "http://localhost:8001/wp-login.php?redirect_to=http%3A%2F%2Flocalhost%3A8001%2Fwp-admin%2F&reauth=1" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/75.0.3770.100 Safari/537.36" -192.168.240.1 - - [23/Jul/2019:23:22:57 +0000] "GET /wp-includes/css/buttons.min.css?ver=5.2.2 HTTP/1.1" 200 1858 "http://localhost:8001/wp-login.php?redirect_to=http%3A%2F%2Flocalhost%3A8001%2Fwp-admin%2F&reauth=1" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/75.0.3770.100 Safari/537.36" -192.168.240.1 - - [23/Jul/2019:23:22:57 +0000] "GET /wp-admin/css/forms.min.css?ver=5.2.2 HTTP/1.1" 200 5807 "http://localhost:8001/wp-login.php?redirect_to=http%3A%2F%2Flocalhost%3A8001%2Fwp-admin%2F&reauth=1" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/75.0.3770.100 Safari/537.36" -192.168.240.1 - - [23/Jul/2019:23:22:57 +0000] "GET /wp-admin/css/l10n.min.css?ver=5.2.2 HTTP/1.1" 200 1022 "http://localhost:8001/wp-login.php?redirect_to=http%3A%2F%2Flocalhost%3A8001%2Fwp-admin%2F&reauth=1" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/75.0.3770.100 Safari/537.36" -192.168.240.1 - - [23/Jul/2019:23:22:57 +0000] "GET /wp-admin/css/login.min.css?ver=5.2.2 HTTP/1.1" 200 7245 "http://localhost:8001/wp-login.php?redirect_to=http%3A%2F%2Flocalhost%3A8001%2Fwp-admin%2F&reauth=1" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/75.0.3770.100 Safari/537.36" -192.168.240.1 - - [23/Jul/2019:23:22:57 +0000] "GET /wp-admin/images/wordpress-logo.svg?ver=20131107 HTTP/1.1" 200 1810 "http://localhost:8001/wp-admin/css/login.min.css?ver=5.2.2" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/75.0.3770.100 Safari/537.36" -192.168.240.1 - - [23/Jul/2019:23:22:57 +0000] "GET /favicon.ico HTTP/1.1" 200 228 "http://localhost:8001/wp-login.php?redirect_to=http%3A%2F%2Flocalhost%3A8001%2Fwp-admin%2F&reauth=1" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/75.0.3770.100 Safari/537.36" -192.168.240.1 - - [23/Jul/2019:23:23:02 +0000] "POST /wp-login.php HTTP/1.1" 302 1149 "http://localhost:8001/wp-login.php?redirect_to=http%3A%2F%2Flocalhost%3A8001%2Fwp-admin%2F&reauth=1" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/75.0.3770.100 Safari/537.36" -127.0.0.1 - - [23/Jul/2019:23:23:02 +0000] "OPTIONS * HTTP/1.0" 200 126 "-" "Apache/2.4.38 (Debian) PHP/7.2.20 (internal dummy connection)" -127.0.0.1 - - [23/Jul/2019:23:23:03 +0000] "OPTIONS * HTTP/1.0" 200 126 "-" "Apache/2.4.38 (Debian) PHP/7.2.20 (internal dummy connection)" -192.168.240.1 - - [23/Jul/2019:23:23:02 +0000] "GET /wp-admin/ HTTP/1.1" 200 17747 "http://localhost:8001/wp-login.php?redirect_to=http%3A%2F%2Flocalhost%3A8001%2Fwp-admin%2F&reauth=1" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/75.0.3770.100 Safari/537.36" -192.168.240.1 - - [23/Jul/2019:23:23:05 +0000] "GET /wp-includes/js/thickbox/thickbox.css?ver=5.2.2 HTTP/1.1" 200 1268 "http://localhost:8001/wp-admin/" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/75.0.3770.100 Safari/537.36" -192.168.240.1 - - [23/Jul/2019:23:23:05 +0000] "GET /wp-content/plugins/woocommerce/assets/css/menu.css?ver=3.6.5 HTTP/1.1" 200 1646 "http://localhost:8001/wp-admin/" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/75.0.3770.100 Safari/537.36" -192.168.240.1 - - [23/Jul/2019:23:23:05 +0000] "GET /wp-admin/load-styles.php?c=0&dir=ltr&load%5B%5D=dashicons,admin-bar,common,forms,admin-menu,dashboard,list-tables,edit,revisions,media,themes,about,nav-menus,wp-pointer,widgets&load%5B%5D=,site-icon,l10n,buttons,wp-auth-check&ver=5.2.2 HTTP/1.1" 200 84249 "http://localhost:8001/wp-admin/" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/75.0.3770.100 Safari/537.36" -192.168.240.1 - - [23/Jul/2019:23:23:05 +0000] "GET /wp-content/plugins/woocommerce/assets/css/dashboard.css?ver=3.6.5 HTTP/1.1" 200 1512 "http://localhost:8001/wp-admin/" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/75.0.3770.100 Safari/537.36" -192.168.240.1 - - [23/Jul/2019:23:23:05 +0000] "GET /wp-content/plugins/woocommerce/assets/css/activation.css?ver=3.6.5 HTTP/1.1" 200 832 "http://localhost:8001/wp-admin/" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/75.0.3770.100 Safari/537.36" -192.168.240.1 - - [23/Jul/2019:23:23:05 +0000] "GET /wp-admin/load-scripts.php?c=0&load%5B%5D=jquery-core,jquery-migrate,utils,jquery-ui-core&ver=5.2.2 HTTP/1.1" 200 39618 "http://localhost:8001/wp-admin/" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/75.0.3770.100 Safari/537.36" -192.168.240.1 - - [23/Jul/2019:23:23:05 +0000] "GET /wp-includes/js/jquery/ui/datepicker.min.js?ver=1.11.4 HTTP/1.1" 200 11354 "http://localhost:8001/wp-admin/" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/75.0.3770.100 Safari/537.36" -192.168.240.1 - - [23/Jul/2019:23:23:05 +0000] "GET /wp-content/plugins/woocommerce/assets/js/admin/reports.min.js?ver=3.6.5 HTTP/1.1" 200 1696 "http://localhost:8001/wp-admin/" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/75.0.3770.100 Safari/537.36" -192.168.240.1 - - [23/Jul/2019:23:23:05 +0000] "GET /wp-content/plugins/woocommerce/assets/js/jquery-flot/jquery.flot.min.js?ver=3.6.5 HTTP/1.1" 200 12850 "http://localhost:8001/wp-admin/" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/75.0.3770.100 Safari/537.36" -192.168.240.1 - - [23/Jul/2019:23:23:05 +0000] "GET /wp-content/plugins/woocommerce/assets/js/jquery-flot/jquery.flot.resize.min.js?ver=3.6.5 HTTP/1.1" 200 933 "http://localhost:8001/wp-admin/" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/75.0.3770.100 Safari/537.36" -192.168.240.1 - - [23/Jul/2019:23:23:05 +0000] "GET /wp-content/plugins/woocommerce/assets/js/jquery-flot/jquery.flot.time.min.js?ver=3.6.5 HTTP/1.1" 200 2211 "http://localhost:8001/wp-admin/" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/75.0.3770.100 Safari/537.36" -192.168.240.1 - - [23/Jul/2019:23:23:05 +0000] "GET /wp-includes/css/editor.min.css?ver=5.2.2 HTTP/1.1" 200 6246 "http://localhost:8001/wp-admin/" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/75.0.3770.100 Safari/537.36" -192.168.240.1 - - [23/Jul/2019:23:23:05 +0000] "GET /wp-content/plugins/woocommerce/assets/js/jquery-flot/jquery.flot.pie.min.js?ver=3.6.5 HTTP/1.1" 200 3268 "http://localhost:8001/wp-admin/" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/75.0.3770.100 Safari/537.36" -192.168.240.1 - - [23/Jul/2019:23:23:05 +0000] "GET /wp-content/plugins/woocommerce/assets/js/jquery-flot/jquery.flot.stack.min.js?ver=3.6.5 HTTP/1.1" 200 995 "http://localhost:8001/wp-admin/" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/75.0.3770.100 Safari/537.36" -192.168.240.1 - - [23/Jul/2019:23:23:05 +0000] "GET /wp-includes/js/dist/vendor/wp-polyfill.min.js?ver=7.0.0 HTTP/1.1" 200 33220 "http://localhost:8001/wp-admin/" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/75.0.3770.100 Safari/537.36" -192.168.240.1 - - [23/Jul/2019:23:23:05 +0000] "GET /wp-admin/load-scripts.php?c=0&load%5B%5D=hoverIntent,common,admin-bar,wp-ajax-response,jquery-color,wp-lists,quicktags,jquery-query,admin-comments,jquery-ui-widget,jquer&load%5B%5D=y-ui-mouse,jquery-ui-sortable,postbox,underscore,wp-util,wp-a11y,dashboard,thickbox,plugin-install,updates,shortcode,media-uploa&load%5B%5D=d,svg-painter&ver=5.2.2 HTTP/1.1" 200 57228 "http://localhost:8001/wp-admin/" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/75.0.3770.100 Safari/537.36" -192.168.240.1 - - [23/Jul/2019:23:23:05 +0000] "GET /wp-includes/js/dist/hooks.min.js?ver=2.2.0 HTTP/1.1" 200 2063 "http://localhost:8001/wp-admin/" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/75.0.3770.100 Safari/537.36" -192.168.240.1 - - [23/Jul/2019:23:23:05 +0000] "GET /wp-includes/js/heartbeat.min.js?ver=5.2.2 HTTP/1.1" 200 2397 "http://localhost:8001/wp-admin/" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/75.0.3770.100 Safari/537.36" -192.168.240.1 - - [23/Jul/2019:23:23:05 +0000] "GET /wp-includes/js/wp-auth-check.min.js?ver=5.2.2 HTTP/1.1" 200 1130 "http://localhost:8001/wp-admin/" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/75.0.3770.100 Safari/537.36" -192.168.240.1 - - [23/Jul/2019:23:23:05 +0000] "GET /wp-includes/js/wplink.min.js?ver=5.2.2 HTTP/1.1" 200 4280 "http://localhost:8001/wp-admin/" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/75.0.3770.100 Safari/537.36" -192.168.240.1 - - [23/Jul/2019:23:23:05 +0000] "GET /wp-includes/js/jquery/ui/position.min.js?ver=1.11.4 HTTP/1.1" 200 2913 "http://localhost:8001/wp-admin/" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/75.0.3770.100 Safari/537.36" -192.168.240.1 - - [23/Jul/2019:23:23:05 +0000] "GET /wp-includes/js/jquery/ui/menu.min.js?ver=1.11.4 HTTP/1.1" 200 3195 "http://localhost:8001/wp-admin/" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/75.0.3770.100 Safari/537.36" -192.168.240.1 - - [23/Jul/2019:23:23:05 +0000] "GET /wp-includes/js/jquery/ui/autocomplete.min.js?ver=1.11.4 HTTP/1.1" 200 3219 "http://localhost:8001/wp-admin/" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/75.0.3770.100 Safari/537.36" -192.168.240.1 - - [23/Jul/2019:23:23:06 +0000] "GET /wp-content/plugins/woocommerce/assets/fonts/WooCommerce.woff HTTP/1.1" 200 14463 "http://localhost:8001/wp-content/plugins/woocommerce/assets/css/menu.css?ver=3.6.5" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/75.0.3770.100 Safari/537.36" -192.168.240.1 - - [23/Jul/2019:23:23:06 +0000] "GET /wp-includes/js/thickbox/loadingAnimation.gif HTTP/1.1" 200 15525 "http://localhost:8001/wp-admin/" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/75.0.3770.100 Safari/537.36" -192.168.240.1 - - [23/Jul/2019:23:23:06 +0000] "GET /wp-admin/admin-ajax.php?action=wp-compression-test&test=1&_ajax_nonce=373a1c364c&1563924186262 HTTP/1.1" 200 1106 "http://localhost:8001/wp-admin/" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/75.0.3770.100 Safari/537.36" -192.168.240.1 - - [23/Jul/2019:23:23:06 +0000] "GET /favicon.ico HTTP/1.1" 200 228 "http://localhost:8001/wp-admin/" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/75.0.3770.100 Safari/537.36" -192.168.240.1 - - [23/Jul/2019:23:23:06 +0000] "GET /wp-admin/admin-ajax.php?action=wp-compression-test&test=no&_ajax_nonce=373a1c364c&1563924186549 HTTP/1.1" 200 484 "http://localhost:8001/wp-admin/" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/75.0.3770.100 Safari/537.36" -192.168.240.1 - - [23/Jul/2019:23:23:06 +0000] "POST /wp-admin/admin-ajax.php HTTP/1.1" 200 1754 "http://localhost:8001/wp-admin/" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/75.0.3770.100 Safari/537.36" -192.168.240.1 - - [23/Jul/2019:23:23:06 +0000] "GET /wp-admin/admin-ajax.php?action=dashboard-widgets&widget=dashboard_primary&pagenow=dashboard HTTP/1.1" 200 876 "http://localhost:8001/wp-admin/" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/75.0.3770.100 Safari/537.36" -192.168.240.1 - - [23/Jul/2019:23:28:06 +0000] "POST /wp-admin/admin-ajax.php HTTP/1.1" 200 526 "http://localhost:8001/wp-admin/" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/75.0.3770.100 Safari/537.36" -192.168.240.1 - - [23/Jul/2019:23:28:15 +0000] "GET /wp-admin/ HTTP/1.1" 200 19015 "http://localhost:8001/wp-login.php?redirect_to=http%3A%2F%2Flocalhost%3A8001%2Fwp-admin%2F&reauth=1" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/75.0.3770.100 Safari/537.36" -192.168.240.1 - - [23/Jul/2019:23:28:16 +0000] "GET /wp-content/plugins/woocommerce/assets/css/menu.css?ver=3.6.5 HTTP/1.1" 200 1646 "http://localhost:8001/wp-admin/" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/75.0.3770.100 Safari/537.36" -192.168.240.1 - - [23/Jul/2019:23:28:16 +0000] "GET /wp-content/plugins/woocommerce/assets/css/dashboard.css?ver=3.6.5 HTTP/1.1" 200 1513 "http://localhost:8001/wp-admin/" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/75.0.3770.100 Safari/537.36" -192.168.240.1 - - [23/Jul/2019:23:28:16 +0000] "GET /wp-content/plugins/woocommerce/assets/css/activation.css?ver=3.6.5 HTTP/1.1" 200 833 "http://localhost:8001/wp-admin/" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/75.0.3770.100 Safari/537.36" -192.168.240.1 - - [23/Jul/2019:23:28:16 +0000] "GET /wp-content/plugins/woocommerce/assets/js/admin/reports.min.js?ver=3.6.5 HTTP/1.1" 200 1696 "http://localhost:8001/wp-admin/" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/75.0.3770.100 Safari/537.36" -192.168.240.1 - - [23/Jul/2019:23:28:16 +0000] "GET /wp-content/plugins/woocommerce/assets/js/jquery-flot/jquery.flot.min.js?ver=3.6.5 HTTP/1.1" 200 12850 "http://localhost:8001/wp-admin/" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/75.0.3770.100 Safari/537.36" -192.168.240.1 - - [23/Jul/2019:23:28:16 +0000] "GET /wp-content/plugins/woocommerce/assets/js/jquery-flot/jquery.flot.resize.min.js?ver=3.6.5 HTTP/1.1" 200 932 "http://localhost:8001/wp-admin/" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/75.0.3770.100 Safari/537.36" -192.168.240.1 - - [23/Jul/2019:23:28:16 +0000] "GET /wp-content/plugins/woocommerce/assets/js/jquery-flot/jquery.flot.time.min.js?ver=3.6.5 HTTP/1.1" 200 2210 "http://localhost:8001/wp-admin/" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/75.0.3770.100 Safari/537.36" -192.168.240.1 - - [23/Jul/2019:23:28:16 +0000] "GET /wp-content/plugins/woocommerce/assets/js/jquery-flot/jquery.flot.pie.min.js?ver=3.6.5 HTTP/1.1" 200 3268 "http://localhost:8001/wp-admin/" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/75.0.3770.100 Safari/537.36" -192.168.240.1 - - [23/Jul/2019:23:28:16 +0000] "GET /wp-content/plugins/woocommerce/assets/js/jquery-flot/jquery.flot.stack.min.js?ver=3.6.5 HTTP/1.1" 200 995 "http://localhost:8001/wp-admin/" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/75.0.3770.100 Safari/537.36" -192.168.240.1 - - [23/Jul/2019:23:28:16 +0000] "GET /wp-content/plugins/woocommerce/assets/fonts/WooCommerce.woff HTTP/1.1" 304 181 "http://localhost:8001/wp-content/plugins/woocommerce/assets/css/menu.css?ver=3.6.5" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/75.0.3770.100 Safari/537.36" -192.168.240.1 - - [23/Jul/2019:23:28:16 +0000] "GET /favicon.ico HTTP/1.1" 200 228 "http://localhost:8001/wp-admin/" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/75.0.3770.100 Safari/537.36" -192.168.240.1 - - [23/Jul/2019:23:28:19 +0000] "GET /wp-admin/admin.php?page=wp-graphiql/wp-graphiql.php HTTP/1.1" 200 8273 "http://localhost:8001/wp-admin/" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/75.0.3770.100 Safari/537.36" -192.168.240.1 - - [23/Jul/2019:23:28:19 +0000] "GET /wp-content/plugins/wp-graphiql/assets/app/build/static/css/main.820e0136.css?ver=5.2.2 HTTP/1.1" 200 6881 "http://localhost:8001/wp-admin/admin.php?page=wp-graphiql/wp-graphiql.php" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/75.0.3770.100 Safari/537.36" -192.168.240.1 - - [23/Jul/2019:23:28:19 +0000] "GET /wp-content/plugins/wp-graphiql/assets/js/wp-graphiql-helpers.js?ver=5.2.2 HTTP/1.1" 200 590 "http://localhost:8001/wp-admin/admin.php?page=wp-graphiql/wp-graphiql.php" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/75.0.3770.100 Safari/537.36" -192.168.240.1 - - [23/Jul/2019:23:28:19 +0000] "GET /wp-admin/load-scripts.php?c=0&load%5B%5D=jquery-core,jquery-migrate,utils&ver=5.2.2 HTTP/1.1" 200 38219 "http://localhost:8001/wp-admin/admin.php?page=wp-graphiql/wp-graphiql.php" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/75.0.3770.100 Safari/537.36" -192.168.240.1 - - [23/Jul/2019:23:28:19 +0000] "GET /wp-admin/load-scripts.php?c=0&load%5B%5D=hoverIntent,common,admin-bar,svg-painter&ver=5.2.2 HTTP/1.1" 200 9580 "http://localhost:8001/wp-admin/admin.php?page=wp-graphiql/wp-graphiql.php" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/75.0.3770.100 Safari/537.36" -192.168.240.1 - - [23/Jul/2019:23:28:19 +0000] "GET /wp-content/plugins/wp-graphiql/assets/app/build/static/js/main.ef1c9dbe.js?ver=5.2.2 HTTP/1.1" 200 225962 "http://localhost:8001/wp-admin/admin.php?page=wp-graphiql/wp-graphiql.php" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/75.0.3770.100 Safari/537.36" -192.168.240.1 - - [23/Jul/2019:23:28:20 +0000] "GET /favicon.ico HTTP/1.1" 200 228 "http://localhost:8001/wp-admin/admin.php?page=wp-graphiql%2Fwp-graphiql.php" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/75.0.3770.100 Safari/537.36" -192.168.240.1 - - [23/Jul/2019:23:28:20 +0000] "POST /index.php?graphql HTTP/1.1" 200 861872 "http://localhost:8001/wp-admin/admin.php?page=wp-graphiql%2Fwp-graphiql.php" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/75.0.3770.100 Safari/537.36" -127.0.0.1 - - [23/Jul/2019:23:28:27 +0000] "OPTIONS * HTTP/1.0" 200 126 "-" "Apache/2.4.38 (Debian) PHP/7.2.20 (internal dummy connection)" -127.0.0.1 - - [23/Jul/2019:23:28:28 +0000] "OPTIONS * HTTP/1.0" 200 126 "-" "Apache/2.4.38 (Debian) PHP/7.2.20 (internal dummy connection)" -127.0.0.1 - - [23/Jul/2019:23:28:29 +0000] "OPTIONS * HTTP/1.0" 200 126 "-" "Apache/2.4.38 (Debian) PHP/7.2.20 (internal dummy connection)" -192.168.240.1 - - [23/Jul/2019:23:29:20 +0000] "POST /wp-admin/admin-ajax.php HTTP/1.1" 200 526 "http://localhost:8001/wp-admin/admin.php?page=wp-graphiql%2Fwp-graphiql.php" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/75.0.3770.100 Safari/537.36" -192.168.240.1 - - [23/Jul/2019:23:29:26 +0000] "POST /index.php?graphql HTTP/1.1" 200 790 "http://localhost:8001/wp-admin/admin.php?page=wp-graphiql%2Fwp-graphiql.php" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/75.0.3770.100 Safari/537.36" diff --git a/.log/app/error.log b/.log/app/error.log deleted file mode 100644 index 489a4120d..000000000 --- a/.log/app/error.log +++ /dev/null @@ -1,16 +0,0 @@ -[Tue Jul 23 23:08:37.390467 2019] [mpm_prefork:notice] [pid 1] AH00163: Apache/2.4.38 (Debian) PHP/7.2.20 configured -- resuming normal operations -[Tue Jul 23 23:08:37.390627 2019] [core:notice] [pid 1] AH00094: Command line: 'apache2 -D FOREGROUND' -[Tue Jul 23 23:10:33.922144 2019] [php7:warn] [pid 56] [client 127.0.0.1:38488] PHP Warning: ftp_rename() expects parameter 1 to be resource, null given in /var/www/html/wp-admin/includes/class-wp-filesystem-ftpext.php on line 358, referer: http://localhost/wp-cron.php?doing_wp_cron=1563923430.3347780704498291015625 -[Tue Jul 23 23:12:03.788922 2019] [mpm_prefork:notice] [pid 1] AH00169: caught SIGTERM, shutting down -[Tue Jul 23 23:13:37.887310 2019] [mpm_prefork:notice] [pid 1] AH00163: Apache/2.4.38 (Debian) PHP/7.2.20 configured -- resuming normal operations -[Tue Jul 23 23:13:37.887484 2019] [core:notice] [pid 1] AH00094: Command line: 'apache2 -D FOREGROUND' -[Tue Jul 23 23:16:29.271624 2019] [mpm_prefork:notice] [pid 1] AH00169: caught SIGTERM, shutting down -[Tue Jul 23 23:19:51.645435 2019] [mpm_prefork:notice] [pid 1] AH00163: Apache/2.4.38 (Debian) PHP/7.2.20 configured -- resuming normal operations -[Tue Jul 23 23:19:51.645599 2019] [core:notice] [pid 1] AH00094: Command line: 'apache2 -D FOREGROUND' -[Tue Jul 23 23:23:14.963092 2019] [mpm_prefork:notice] [pid 1] AH00169: caught SIGTERM, shutting down -[Tue Jul 23 23:23:38.473319 2019] [mpm_prefork:notice] [pid 1] AH00163: Apache/2.4.38 (Debian) PHP/7.2.20 configured -- resuming normal operations -[Tue Jul 23 23:23:38.473455 2019] [core:notice] [pid 1] AH00094: Command line: 'apache2 -D FOREGROUND' -[Tue Jul 23 23:23:46.698214 2019] [mpm_prefork:notice] [pid 1] AH00169: caught SIGTERM, shutting down -[Tue Jul 23 23:27:38.316447 2019] [mpm_prefork:notice] [pid 1] AH00163: Apache/2.4.38 (Debian) PHP/7.2.20 configured -- resuming normal operations -[Tue Jul 23 23:27:38.349795 2019] [core:notice] [pid 1] AH00094: Command line: 'apache2 -D FOREGROUND' -[Tue Jul 23 23:29:54.327335 2019] [mpm_prefork:notice] [pid 1] AH00169: caught SIGTERM, shutting down diff --git a/.log/app/other_vhosts_access.log b/.log/app/other_vhosts_access.log deleted file mode 100644 index e69de29bb..000000000 diff --git a/.log/error.log b/.log/error.log deleted file mode 100644 index 840b1b360..000000000 --- a/.log/error.log +++ /dev/null @@ -1,25 +0,0 @@ -[Tue Jul 23 00:34:59.367015 2019] [mpm_prefork:notice] [pid 1] AH00163: Apache/2.4.38 (Debian) PHP/7.2.20 configured -- resuming normal operations -[Tue Jul 23 00:34:59.367160 2019] [core:notice] [pid 1] AH00094: Command line: 'apache2 -D FOREGROUND' -[Tue Jul 23 00:39:52.575557 2019] [mpm_prefork:notice] [pid 1] AH00169: caught SIGTERM, shutting down -[Tue Jul 23 00:41:30.660723 2019] [mpm_prefork:notice] [pid 1] AH00163: Apache/2.4.38 (Debian) PHP/7.2.20 configured -- resuming normal operations -[Tue Jul 23 00:41:30.702662 2019] [core:notice] [pid 1] AH00094: Command line: 'apache2 -D FOREGROUND' -[Tue Jul 23 00:53:44.867254 2019] [php7:warn] [pid 42] [client 192.168.192.3:38964] PHP Warning: ftp_rename() expects parameter 1 to be resource, null given in /var/www/html/wp-admin/includes/class-wp-filesystem-ftpext.php on line 358, referer: http://wordpress/wp-cron.php?doing_wp_cron=1563843220.4602689743041992187500 -[Tue Jul 23 00:54:31.957084 2019] [mpm_prefork:notice] [pid 1] AH00169: caught SIGTERM, shutting down -[Tue Jul 23 00:58:11.529737 2019] [mpm_prefork:notice] [pid 1] AH00163: Apache/2.4.38 (Debian) PHP/7.2.20 configured -- resuming normal operations -[Tue Jul 23 00:58:11.529912 2019] [core:notice] [pid 1] AH00094: Command line: 'apache2 -D FOREGROUND' -[Tue Jul 23 01:36:34.388618 2019] [mpm_prefork:notice] [pid 1] AH00169: caught SIGTERM, shutting down -[Tue Jul 23 15:47:13.645483 2019] [mpm_prefork:notice] [pid 1] AH00163: Apache/2.4.38 (Debian) PHP/7.2.20 configured -- resuming normal operations -[Tue Jul 23 15:47:13.676461 2019] [core:notice] [pid 1] AH00094: Command line: 'apache2 -D FOREGROUND' -[Tue Jul 23 15:55:24.547799 2019] [mpm_prefork:notice] [pid 1] AH00169: caught SIGTERM, shutting down -[Tue Jul 23 15:59:03.156410 2019] [mpm_prefork:notice] [pid 1] AH00163: Apache/2.4.38 (Debian) PHP/7.2.20 configured -- resuming normal operations -[Tue Jul 23 15:59:03.189905 2019] [core:notice] [pid 1] AH00094: Command line: 'apache2 -D FOREGROUND' -[Tue Jul 23 16:17:38.287007 2019] [mpm_prefork:notice] [pid 1] AH00169: caught SIGTERM, shutting down -[Tue Jul 23 16:18:03.637095 2019] [mpm_prefork:notice] [pid 1] AH00163: Apache/2.4.38 (Debian) PHP/7.2.20 configured -- resuming normal operations -[Tue Jul 23 16:18:03.637232 2019] [core:notice] [pid 1] AH00094: Command line: 'apache2 -D FOREGROUND' -[Tue Jul 23 16:22:44.209266 2019] [mpm_prefork:notice] [pid 1] AH00169: caught SIGTERM, shutting down -[Tue Jul 23 16:40:31.256545 2019] [mpm_prefork:notice] [pid 1] AH00163: Apache/2.4.38 (Debian) PHP/7.2.20 configured -- resuming normal operations -[Tue Jul 23 16:40:31.256714 2019] [core:notice] [pid 1] AH00094: Command line: 'apache2 -D FOREGROUND' -[Tue Jul 23 16:53:30.554674 2019] [mpm_prefork:notice] [pid 1] AH00169: caught SIGTERM, shutting down -[Tue Jul 23 17:20:41.296607 2019] [mpm_prefork:notice] [pid 1] AH00163: Apache/2.4.38 (Debian) PHP/7.2.20 configured -- resuming normal operations -[Tue Jul 23 17:20:41.296757 2019] [core:notice] [pid 1] AH00094: Command line: 'apache2 -D FOREGROUND' -[Tue Jul 23 17:26:22.268374 2019] [mpm_prefork:notice] [pid 1] AH00169: caught SIGTERM, shutting down diff --git a/.log/other_vhosts_access.log b/.log/other_vhosts_access.log deleted file mode 100644 index e69de29bb..000000000 diff --git a/.log/testing/access.log b/.log/testing/access.log deleted file mode 100644 index 80924c626..000000000 --- a/.log/testing/access.log +++ /dev/null @@ -1,9 +0,0 @@ -127.0.0.1 - - [23/Jul/2019:22:57:30 +0000] "GET / HTTP/1.1" 200 4621 "-" "Go-http-client/1.1" -127.0.0.1 - - [23/Jul/2019:22:57:50 +0000] "GET /wp-content/plugins/wp-graphql-woocommerce/wp-graphql-woocommerce.php/c3/report/clear HTTP/1.0" 200 192 "-" "-" -127.0.0.1 - - [23/Jul/2019:22:58:09 +0000] "POST /graphql HTTP/1.1" 500 465 "-" "Symfony BrowserKit" -127.0.0.1 - - [23/Jul/2019:23:01:39 +0000] "GET / HTTP/1.1" 200 4621 "-" "Go-http-client/1.1" -127.0.0.1 - - [23/Jul/2019:23:01:57 +0000] "GET /wp-content/plugins/wp-graphql-woocommerce/wp-graphql-woocommerce.php/c3/report/clear HTTP/1.0" 200 192 "-" "-" -127.0.0.1 - - [23/Jul/2019:23:02:16 +0000] "POST /graphql HTTP/1.1" 500 465 "-" "Symfony BrowserKit" -127.0.0.1 - - [23/Jul/2019:23:12:39 +0000] "GET / HTTP/1.1" 200 4621 "-" "Go-http-client/1.1" -127.0.0.1 - - [23/Jul/2019:23:12:59 +0000] "GET /wp-content/plugins/wp-graphql-woocommerce/wp-graphql-woocommerce.php/c3/report/clear HTTP/1.0" 200 192 "-" "-" -127.0.0.1 - - [23/Jul/2019:23:13:19 +0000] "POST /graphql HTTP/1.1" 500 465 "-" "Symfony BrowserKit" diff --git a/.log/testing/error.log b/.log/testing/error.log deleted file mode 100644 index 5f9f88d7d..000000000 --- a/.log/testing/error.log +++ /dev/null @@ -1,9 +0,0 @@ -[Tue Jul 23 22:57:29.268138 2019] [mpm_prefork:notice] [pid 70] AH00163: Apache/2.4.38 (Debian) PHP/7.2.20 configured -- resuming normal operations -[Tue Jul 23 22:57:29.268288 2019] [core:notice] [pid 70] AH00094: Command line: '/usr/sbin/apache2' -[Tue Jul 23 22:58:09.793712 2019] [php7:error] [pid 75] [client 127.0.0.1:38306] PHP Fatal error: Uncaught Codeception\\Exception\\ConfigurationException: Path for output is not writable. Please, set appropriate access mode for output path: /var/www/html/wp-content/plugins/wp-graphql-woocommerce/tests/_output/ in /var/www/html/wp-content/plugins/wp-graphql-woocommerce/vendor/codeception/codeception/src/Codeception/Configuration.php:550\nStack trace:\n#0 /var/www/html/wp-content/plugins/wp-graphql-woocommerce/vendor/codeception/codeception/src/Codeception/Configuration.php(565): Codeception\\Configuration::outputDir()\n#1 /var/www/html/wp-content/plugins/wp-graphql-woocommerce/c3.php(119): Codeception\\Configuration::logDir()\n#2 /var/www/html/wp-content/plugins/wp-graphql-woocommerce/wp-graphql-woocommerce.php(28): require_once('/var/www/html/w...')\n#3 /var/www/html/wp-settings.php(362): include_once('/var/www/html/w...')\n#4 /var/www/html/wp-config.php(78): require_once('/var/www/html/w...')\n#5 /var/www/html/wp-load.php(37): require_once('/var/www/html/w...')\n#6 /var/www/html/wp-blog-header.php(13): require_once( in /var/www/html/wp-content/plugins/wp-graphql-woocommerce/vendor/codeception/codeception/src/Codeception/Configuration.php on line 550 -[Tue Jul 23 23:01:39.201492 2019] [mpm_prefork:notice] [pid 70] AH00163: Apache/2.4.38 (Debian) PHP/7.2.20 configured -- resuming normal operations -[Tue Jul 23 23:01:39.225138 2019] [core:notice] [pid 70] AH00094: Command line: '/usr/sbin/apache2' -[Tue Jul 23 23:02:16.489891 2019] [php7:error] [pid 77] [client 127.0.0.1:38386] PHP Fatal error: Uncaught Error: Class 'Codeception\\Configuration' not found in /var/www/html/wp-content/plugins/wp-graphql-woocommerce/c3.php:100\nStack trace:\n#0 /var/www/html/wp-content/plugins/wp-graphql-woocommerce/wp-graphql-woocommerce.php(28): require_once()\n#1 /var/www/html/wp-settings.php(362): include_once('/var/www/html/w...')\n#2 /var/www/html/wp-config.php(78): require_once('/var/www/html/w...')\n#3 /var/www/html/wp-load.php(37): require_once('/var/www/html/w...')\n#4 /var/www/html/wp-blog-header.php(13): require_once('/var/www/html/w...')\n#5 /var/www/html/index.php(17): require('/var/www/html/w...')\n#6 {main}\n thrown in /var/www/html/wp-content/plugins/wp-graphql-woocommerce/c3.php on line 100 -[Tue Jul 23 23:12:37.992432 2019] [mpm_prefork:notice] [pid 69] AH00163: Apache/2.4.38 (Debian) PHP/7.2.20 configured -- resuming normal operations -[Tue Jul 23 23:12:37.992574 2019] [core:notice] [pid 69] AH00094: Command line: '/usr/sbin/apache2' -[Tue Jul 23 23:13:19.169432 2019] [php7:error] [pid 75] [client 127.0.0.1:38586] PHP Fatal error: Uncaught Error: Class 'Codeception\\Configuration' not found in /var/www/html/wp-content/plugins/wp-graphql-woocommerce/c3.php:100\nStack trace:\n#0 /var/www/html/wp-content/plugins/wp-graphql-woocommerce/wp-graphql-woocommerce.php(28): require_once()\n#1 /var/www/html/wp-settings.php(362): include_once('/var/www/html/w...')\n#2 /var/www/html/wp-config.php(78): require_once('/var/www/html/w...')\n#3 /var/www/html/wp-load.php(37): require_once('/var/www/html/w...')\n#4 /var/www/html/wp-blog-header.php(13): require_once('/var/www/html/w...')\n#5 /var/www/html/index.php(17): require('/var/www/html/w...')\n#6 {main}\n thrown in /var/www/html/wp-content/plugins/wp-graphql-woocommerce/c3.php on line 100 diff --git a/.log/testing/other_vhosts_access.log b/.log/testing/other_vhosts_access.log deleted file mode 100644 index e69de29bb..000000000 diff --git a/.travis.yml b/.travis.yml index ea657003d..2dfc9eca8 100644 --- a/.travis.yml +++ b/.travis.yml @@ -37,7 +37,6 @@ env: - PHP_VERSION=7.0 WP_VERSION=5.2.2 - PHP_VERSION=5.6 WP_VERSION=4.9 - PHP_VERSION=5.6 WP_VERSION=5.2.2 DEBUG=1 - - PHP_VERSION=5.6 WP_VERSION=trunk before_install: - sudo rm /usr/local/bin/docker-compose diff --git a/Dockerfile.tester b/Dockerfile.tester index 0092e6054..0e8a22322 100644 --- a/Dockerfile.tester +++ b/Dockerfile.tester @@ -2,7 +2,11 @@ # Container for running Codeception tests on a WooGraphQL Docker instance. # ############################################################################ -FROM kidunot89/woographql-app +# Using the 'DESIRED_' prefix to avoid confusion with environment variables of the same name. +ARG DESIRED_WP_VERSION +ARG DESIRED_PHP_VERSION + +FROM kidunot89/woographql-app:wp${DESIRED_WP_VERSION:-5.2.2}-php${DESIRED_PHP_VERSION:-7.3} LABEL author=kidunot89 LABEL author_uri=https://github.com/kidunot89 diff --git a/docker-compose.yml b/docker-compose.yml index 7c49fe039..eb1c8823b 100644 --- a/docker-compose.yml +++ b/docker-compose.yml @@ -4,12 +4,7 @@ services: app: depends_on: - app_db - build: - context: . - args: - DESIRED_PHP_VERSION: "${PHP_VERSION:-7.2}" - DESIRED_WP_VERSION: "${WP_VERSION:-5.2.2}" - image: kidunot89/woographql-app + image: "kidunot89/woographql-app:wp${WP_VERSION:-5.2.2}-php${PHP_VERSION:-7.2}" volumes: - '.:/var/www/html/wp-content/plugins/wp-graphql-woocommerce' - './.log/app:/var/log/apache2' @@ -44,7 +39,10 @@ services: build: context: . dockerfile: Dockerfile.tester - image: kidunot89/woographql-testing + args: + DESIRED_PHP_VERSION: "${PHP_VERSION:-7.2}" + DESIRED_WP_VERSION: "${WP_VERSION:-5.2.2}" + image: woographql-testing volumes: - '.:/var/www/html/wp-content/plugins/wp-graphql-woocommerce' - './tests:/var/www/html/tests' From b8c7b109925587c5d5901fe420e76d2af2cd230a Mon Sep 17 00:00:00 2001 From: Geoff Taylor Date: Thu, 25 Jul 2019 00:04:32 -0400 Subject: [PATCH 14/24] Codeception configuration heavily refactored --- .dockerignore | 3 + .env.dist | 21 ++++-- .gitignore | 8 +- .travis.yml | 22 ++++-- Dockerfile | 69 +++++++---------- Dockerfile.tester | 55 -------------- bin/entrypoint.sh | 70 ------------------ bin/install-wp-tests.sh | 20 +---- bin/testing-entrypoint.sh | 31 ++++---- ...ception.docker.yml => codeception.dist.yml | 38 +++++----- codeception.yml | 74 ------------------- docker-compose.yml | 16 ++-- includes/mutation/class-cart-add-item.php | 10 ++- tests/functional/QLSessionHandlerCest.php | 5 +- vendor/composer/ClassLoader.php | 2 +- wp-graphql-woocommerce.php | 3 + 16 files changed, 126 insertions(+), 321 deletions(-) create mode 100644 .dockerignore delete mode 100644 Dockerfile.tester delete mode 100644 bin/entrypoint.sh rename codeception.docker.yml => codeception.dist.yml (72%) delete mode 100644 codeception.yml diff --git a/.dockerignore b/.dockerignore new file mode 100644 index 000000000..dae90b1a8 --- /dev/null +++ b/.dockerignore @@ -0,0 +1,3 @@ +.env +.github_changelog_generator +.travis.yml \ No newline at end of file diff --git a/.env.dist b/.env.dist index acfb4cb15..db45227c9 100644 --- a/.env.dist +++ b/.env.dist @@ -5,16 +5,23 @@ DB_PASSWORD=wordpress WP_TABLE_PREFIX=wp_ WP_URL=http://localhost WP_DOMAIN=localhost -ADMIN_EMAIL=admin@localhost +ADMIN_EMAIL=admin@example.com ADMIN_USERNAME=admin ADMIN_PASSWORD=password ADMIN_PATH=/wp-admin -SKIP_DB_CREATE=false -TEST_WP_ROOT_FOLDER=/tmp/wordpress -TEST_DB_NAME=wpgraphql_woocommerce_test +TEST_DB_NAME=woographql_tests TEST_DB_HOST=127.0.0.1 -TEST_DB_USER=root -TEST_DB_PASSWORD= +TEST_DB_USER=wordpress +TEST_DB_PASSWORD=wordpress TEST_WP_TABLE_PREFIX=wp_ -TEST_SITE_ADMIN_EMAIL=admin@wp.test \ No newline at end of file + +SKIP_DB_CREATE=false +TEST_WP_ROOT_FOLDER=/tmp/wordpress +TEST_ADMIN_EMAIL=admin@wp.test + +TESTS_DIR=tests +TESTS_OUTPUT=tests/_output +TESTS_DATA=tests/_data +TESTS_SUPPORT=tests/_support +TESTS_ENVS=tests/_envs \ No newline at end of file diff --git a/.gitignore b/.gitignore index 6a9e78f83..b6f77baa3 100644 --- a/.gitignore +++ b/.gitignore @@ -8,6 +8,8 @@ node_modules/ *.tar.gz *.zip .env +.env.* +!.env.dist .idea .vscode .github_changelog_generator @@ -17,8 +19,8 @@ vendor/* !vendor/composer vendor/composer/installed.json vendor/composer/*/ -!/tests -/tests/*.suite.yml +!tests +tests/*.suite.yml build/ coverage/* schema.graphql @@ -26,4 +28,4 @@ phpunit.xml docker-output composer.lock c3.php -.log/ \ No newline at end of file +.log/ diff --git a/.travis.yml b/.travis.yml index 2dfc9eca8..45d4497b3 100644 --- a/.travis.yml +++ b/.travis.yml @@ -36,7 +36,7 @@ env: - PHP_VERSION=7.1 WP_VERSION=5.2.2 - PHP_VERSION=7.0 WP_VERSION=5.2.2 - PHP_VERSION=5.6 WP_VERSION=4.9 - - PHP_VERSION=5.6 WP_VERSION=5.2.2 DEBUG=1 + - PHP_VERSION=5.6 WP_VERSION=5.0.2 DEBUG=1 before_install: - sudo rm /usr/local/bin/docker-compose @@ -78,7 +78,10 @@ before_script: # Install PHP CodeSniffer and WPCS. - | if [ "$PHPCS" == "1" ]; then - COMPOSER_MEMORY_LIMIT=-1 travis_retry composer require squizlabs/php_codesniffer phpcompatibility/phpcompatibility-wp wp-coding-standards/wpcs dealerdirect/phpcodesniffer-composer-installer + COMPOSER_MEMORY_LIMIT=-1 travis_retry composer require \ + squizlabs/php_codesniffer \ + phpcompatibility/phpcompatibility-wp wp-coding-standards/wpcs \ + dealerdirect/phpcodesniffer-composer-installer COMPOSER_MEMORY_LIMIT=-1 travis_retry composer install --no-dev ls -al fi @@ -87,13 +90,20 @@ script: # Execute unit tests with coverage if specified, otherwise without coverage - | if [ ! -z "$WP_VERSION" ]; then - docker-compose run -e SUITE=functional -e COVERAGE=${COVERAGE:-0} testing --rm testing --scale app=0 - docker-compose run -e SUITE=acceptance -e COVERAGE=${COVERAGE:-0} testing --rm testing --scale app=0 - docker-compose run -e SUITE=wpunit -e COVERAGE=${COVERAGE:-0} testing --rm testing --scale app=0 + declare -a suites=( 'acceptance', 'functional', 'wpunit' ) + for i in "${suites[@]}"; do + docker-compose run \ + -e SUITE=${i} -e COVERAGE=${COVERAGE:-0} -e DEBUG=${DEBUG:-0} testing \ + --rm testing --scale app=0 + done fi - | if [ "$PHPCS" == "1" ]; then - vendor/bin/phpcs wp-graphql-woocommerce.php access-functions.php class-inflect.php includes/*.php --standard=WordPress + vendor/bin/phpcs \ + wp-graphql-woocommerce.php \ + access-functions.php \ + class-inflect.php \ + includes/*.php --standard=WordPress fi after_success: # Runs Coveralls.io client diff --git a/Dockerfile b/Dockerfile index a767813ae..bc9d55186 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,59 +1,42 @@ -############################################################################### -# Pre-configured WordPress Installation w/ WooCommerce, WPGraphQL, WooGraphQL # -# For testing only, use in production not recommended. # -############################################################################### +############################################################################ +# Container for running Codeception tests on a WooGraphQL Docker instance. # +############################################################################ # Using the 'DESIRED_' prefix to avoid confusion with environment variables of the same name. ARG DESIRED_WP_VERSION ARG DESIRED_PHP_VERSION -FROM wordpress:${DESIRED_WP_VERSION}-php${DESIRED_PHP_VERSION}-apache +FROM kidunot89/woographql-app:wp${DESIRED_WP_VERSION:-5.2.2}-php${DESIRED_PHP_VERSION:-7.3} LABEL author=kidunot89 LABEL author_uri=https://github.com/kidunot89 SHELL [ "/bin/bash", "-c" ] -# Install system packages -RUN apt-get update && \ - apt-get -y install \ - # CircleCI depedencies - git \ - ssh \ - tar \ - gzip \ - wget \ - mariadb-client - -# Install Dockerize -ENV DOCKERIZE_VERSION v0.6.1 -RUN wget https://github.com/jwilder/dockerize/releases/download/$DOCKERIZE_VERSION/dockerize-linux-amd64-$DOCKERIZE_VERSION.tar.gz \ - && tar -C /usr/local/bin -xzvf dockerize-linux-amd64-$DOCKERIZE_VERSION.tar.gz \ - && rm dockerize-linux-amd64-$DOCKERIZE_VERSION.tar.gz - -# Install WP-CLI -RUN curl -O https://raw.githubusercontent.com/wp-cli/builds/gh-pages/phar/wp-cli.phar \ - && chmod +x wp-cli.phar \ - && mv wp-cli.phar /usr/local/bin/wp - -# Set project environmental variables -ENV WP_ROOT_FOLDER="/var/www/html" -ENV WORDPRESS_DB_HOST=${DB_HOST} -ENV WORDPRESS_DB_USER=${DB_USER} -ENV WORDPRESS_DB_PASSWORD=${DB_PASSWORD} -ENV WORDPRESS_DB_NAME=${DB_NAME} -ENV PLUGINS_DIR="${WP_ROOT_FOLDER}/wp-content/plugins" -ENV PROJECT_DIR="${PLUGINS_DIR}/wp-graphql-woocommerce" +# Install php extensions +RUN docker-php-ext-install pdo_mysql -# Remove exec statement from base entrypoint script. -RUN sed -i '$d' /usr/local/bin/docker-entrypoint.sh +# Install Xdebug +RUN yes | pecl install xdebug \ + && echo "zend_extension=$(find /usr/local/lib/php/extensions/ -name xdebug.so)" > /usr/local/etc/php/conf.d/xdebug.ini \ + && echo "xdebug.remote_enable=on" >> /usr/local/etc/php/conf.d/xdebug.ini \ + && echo "xdebug.remote_autostart=off" >> /usr/local/etc/php/conf.d/xdebug.ini + +# Install composer +ENV COMPOSER_ALLOW_SUPERUSER=1 + +RUN curl -sS https://getcomposer.org/installer | php -- \ + --filename=composer \ + --install-dir=/usr/local/bin -# Set up Apache -RUN echo 'ServerName localhost' >> /etc/apache2/apache2.conf +# Add composer global binaries to PATH +ENV PATH "$PATH:~/.composer/vendor/bin" + +# Remove exec statement from base entrypoint script. +RUN sed -i '$d' /usr/local/bin/app-entrypoint.sh # Set up entrypoint WORKDIR /var/www/html -COPY bin/entrypoint.sh /usr/local/bin/app-entrypoint.sh -RUN chmod 755 /usr/local/bin/app-entrypoint.sh -ENTRYPOINT ["app-entrypoint.sh"] -CMD ["apache2-foreground"] \ No newline at end of file +COPY bin/testing-entrypoint.sh /usr/local/bin/testing-entrypoint.sh +RUN chmod 755 /usr/local/bin/testing-entrypoint.sh +ENTRYPOINT ["testing-entrypoint.sh"] \ No newline at end of file diff --git a/Dockerfile.tester b/Dockerfile.tester deleted file mode 100644 index 0e8a22322..000000000 --- a/Dockerfile.tester +++ /dev/null @@ -1,55 +0,0 @@ -############################################################################ -# Container for running Codeception tests on a WooGraphQL Docker instance. # -############################################################################ - -# Using the 'DESIRED_' prefix to avoid confusion with environment variables of the same name. -ARG DESIRED_WP_VERSION -ARG DESIRED_PHP_VERSION - -FROM kidunot89/woographql-app:wp${DESIRED_WP_VERSION:-5.2.2}-php${DESIRED_PHP_VERSION:-7.3} - -LABEL author=kidunot89 -LABEL author_uri=https://github.com/kidunot89 - -SHELL [ "/bin/bash", "-c" ] - -# Install php extensions -RUN docker-php-ext-install pdo_mysql - -# Install pcov -RUN pecl install pcov \ - && docker-php-ext-enable pcov - -# Install composer -ENV COMPOSER_ALLOW_SUPERUSER=1 - -RUN curl -sS https://getcomposer.org/installer | php -- \ - --filename=composer \ - --install-dir=/usr/local/bin - -# Install tool to speed up composer installations -RUN composer global require --optimize-autoloader \ - "hirak/prestissimo" - -# Install wp-browser globally -RUN composer global require \ - phpunit/phpunit:8.1 \ - lucatume/wp-browser:^2.2 \ - league/factory-muffin:^3.0 \ - league/factory-muffin-faker:^2.0 - -# Add composer global binaries to PATH -ENV PATH "$PATH:~/.composer/vendor/bin" - -# Set up wp-browser / codeception -WORKDIR /var/www/config -COPY codeception.docker.yml codeception.dist.yml - -# Remove exec statement from base entrypoint script. -RUN sed -i '$d' /usr/local/bin/app-entrypoint.sh - -# Set up entrypoint -WORKDIR /var/www/html -COPY bin/testing-entrypoint.sh /usr/local/bin/testing-entrypoint.sh -RUN chmod 755 /usr/local/bin/testing-entrypoint.sh -ENTRYPOINT ["testing-entrypoint.sh"] \ No newline at end of file diff --git a/bin/entrypoint.sh b/bin/entrypoint.sh deleted file mode 100644 index 5fb54cacc..000000000 --- a/bin/entrypoint.sh +++ /dev/null @@ -1,70 +0,0 @@ -#!/bin/bash - -# Run WordPress docker entrypoint. -. docker-entrypoint.sh 'apache2' - -# Ensure mysql is loaded -dockerize -wait tcp://${DB_HOST}:${DB_HOST_PORT:-3306} -timeout 1m - -# Config WordPress -if [ ! -f "${WP_ROOT_FOLDER}/wp-config.php" ]; then - wp config create \ - --path="${WP_ROOT_FOLDER}" \ - --dbname="${DB_NAME}" \ - --dbuser="${DB_USER}" \ - --dbpass="${DB_PASSWORD}" \ - --dbhost="${DB_HOST}" \ - --dbprefix="${WP_TABLE_PREFIX}" \ - --skip-check \ - --quiet \ - --allow-root -fi - -# Install WP if not yet installed -if ! $( wp core is-installed --allow-root ); then - wp core install \ - --path="${WP_ROOT_FOLDER}" \ - --url="${WP_URL}" \ - --title='Test' \ - --admin_user="${ADMIN_USERNAME}" \ - --admin_password="${ADMIN_PASSWORD}" \ - --admin_email="${ADMIN_EMAIL}" \ - --allow-root -fi - -# Install and activate WooCommerce -if [ ! -f "${PLUGINS_DIR}/woocommerce/woocommerce.php" ]; then - wp plugin install woocommerce --activate --allow-root -fi - -# Install and activate WPGraphQL -if [ ! -f "${PLUGINS_DIR}/wp-graphql/wp-graphql.php" ]; then - wp plugin install \ - https://github.com/wp-graphql/wp-graphql/archive/master.zip \ - --activate --allow-root -fi - -# Install and activate WPGraphQL JWT Authentication -if [ ! -f "${PLUGINS_DIR}/wp-graphql-jwt-authentication/wp-graphql-jwt-authentication.php" ]; then - wp plugin install \ - https://github.com/wp-graphql/wp-graphql-jwt-authentication/archive/master.zip \ - --activate --allow-root -fi - -if [ ! -z "$INCLUDE_WPGRAPHIQL" ]; then - if [ ! -f "${PLUGINS_DIR}/wp-graphiql/wp-graphiql.php" ]; then - wp plugin install \ - https://github.com/wp-graphql/wp-graphiql/archive/master.zip \ - --activate --allow-root - fi -fi - -# Activate WooGraphQL -wp plugin activate wp-graphql-woocommerce --allow-root - -# Set pretty permalinks. -wp rewrite structure '/%year%/%monthnum%/%postname%/' --allow-root - -wp db export "${PROJECT_DIR}/tests/_data/dump.sql" --allow-root - -exec "$@" \ No newline at end of file diff --git a/bin/install-wp-tests.sh b/bin/install-wp-tests.sh index f072d796a..9d863e475 100755 --- a/bin/install-wp-tests.sh +++ b/bin/install-wp-tests.sh @@ -1,6 +1,6 @@ #!/usr/bin/env bash -export $(cat .env | xargs) +source .env print_usage_instruction() { echo "Ensure that .env file exist in project root directory exists." @@ -40,7 +40,7 @@ TMPDIR=$(echo $TMPDIR | sed -e "s/\/$//") WP_TESTS_DIR=${WP_TESTS_DIR-$TMPDIR/wordpress-tests-lib} WP_CORE_DIR=${WP_CORE_DIR-$TMPDIR/wordpress/} PLUGIN_DIR=$(pwd) -DB_SERVE_NAME=${DB_SERVE_NAME-wpgraphql_serve} +DB_SERVE_NAME=${DB_SERVE_NAME-woographql_serve} download() { if [ `which curl` ]; then @@ -198,26 +198,14 @@ setup_woocommerce() { setup_wpgraphql() { if [ ! -d $WP_CORE_DIR/wp-content/plugins/wp-graphql ]; then echo "Cloning WPGraphQL" - git clone https://github.com/wp-graphql/wp-graphql.git $WP_CORE_DIR/wp-content/plugins/wp-graphql + wp plugin install https://github.com/wp-graphql/wp-graphql/archive/master.zip fi - - cd $WP_CORE_DIR/wp-content/plugins/wp-graphql - git checkout develop - git pull origin develop - - if [ ! -z "$WP_GRAPHQL_BRANCH" ]; then - echo "Checking out WPGraphQL branch - $WP_GRAPHQL_BRANCH" - git checkout --track origin/$WP_GRAPHQL_BRANCH - fi - - - cd $WP_CORE_DIR echo "Activating WPGraphQL" wp plugin activate wp-graphql if [ ! -d $WP_CORE_DIR/wp-content/plugins/wp-graphql-jwt-authentication ]; then echo "Cloning WPGraphQL-JWT-Authentication" - git clone https://github.com/wp-graphql/wp-graphql-jwt-authentication.git $WP_CORE_DIR/wp-content/plugins/wp-graphql-jwt-authentication + wp plugin install https://github.com/wp-graphql/wp-graphql-jwt-authentication/archive/master.zip fi echo "Activating WPGraphQL-JWT-Authentication" wp plugin activate wp-graphql-jwt-authentication diff --git a/bin/testing-entrypoint.sh b/bin/testing-entrypoint.sh index c63df5ef7..0c744fcaf 100644 --- a/bin/testing-entrypoint.sh +++ b/bin/testing-entrypoint.sh @@ -9,27 +9,28 @@ service apache2 start # Ensure everything is loaded dockerize \ -wait tcp://${TEST_DB_HOST}:${TEST_DB_HOST_PORT:-3306} \ - -wait http://localhost \ + -wait ${WP_URL} \ -timeout 1m - # Download c3 for testing. -if [ ! -f "${PROJECT_DIR}/c3.php" ]; then +if [ ! -f "${PROJECT_DIR}/c3.php" ]; then + echo 'Downloading c3.php' curl -L 'https://raw.github.com/Codeception/c3/2.0/c3.php' > "${PROJECT_DIR}/c3.php" fi -# Link codeception config if not yet linked -if [ ! -e codeception.dist.yml ]; then - ln -s /var/www/config/codeception.dist.yml /var/www/html/codeception.dist.yml -fi - # Run the tests -if [ "$COVERAGE" == "1" ]; then - codecept run ${SUITE} --debug --coverage --coverage-xml +echo 'Moving to WooGraphQL directory.' +cd ${PROJECT_DIR} + +echo 'Setting Codeception output directory permissions'. +chmod 777 ${TESTS_OUTPUT} + +if [ "$COVERAGE" == "1" -a "$DEBUG" == "1" ]; then + vendor/bin/codecept run ${SUITE} --debug --coverage --coverage-xml +elif [ "$COVERAGE" == "1" ]; then + vendor/bin/codecept run ${SUITE} --coverage --coverage-xml elif [ "$DEBUG" == "1" ]; then - codecept run ${SUITE} --debug + vendor/bin/codecept run ${SUITE} --debug else - codecept run ${SUITE} -fi - -exec "$@" \ No newline at end of file + vendor/bin/codecept run ${SUITE} +fi \ No newline at end of file diff --git a/codeception.docker.yml b/codeception.dist.yml similarity index 72% rename from codeception.docker.yml rename to codeception.dist.yml index ac2aa145f..8b51ce3d3 100644 --- a/codeception.docker.yml +++ b/codeception.dist.yml @@ -1,11 +1,12 @@ paths: - tests: tests - log: tests/_output - data: tests/_data - support: tests/_support - envs: tests/_envs + tests: '%TESTS_DIR%' + output: '%TESTS_OUTPUT%' + data: '%TESTS_DATA%' + support: '%TESTS_SUPPORT%' + envs: '%TESTS_ENVS%' params: - env + - .env.dist actor_suffix: Tester settings: colors: true @@ -15,10 +16,10 @@ coverage: c3_url: http://localhost/wp-content/plugins/wp-graphql-woocommerce/wp-graphql-woocommerce.php whitelist: include: - - wp-content/plugins/wp-graphql-woocommerce/wp-graphql-woocommerce.php - - wp-content/plugins/wp-graphql-woocommerce/access-functions.php - - wp-content/plugins/wp-graphql-woocommerce/class-inflect.php - - wp-content/plugins/wp-graphql-woocommerce/includes/*.php + - wp-graphql-woocommerce.php + - access-functions.php + - class-inflect.php + - includes/*.php extensions: enabled: - Codeception\Extension\RunFailed @@ -33,25 +34,26 @@ extensions: modules: config: WPDb: - dsn: 'mysql:host=%TEST_DB_HOST%;dbname=%TEST_DB_NAME%' - user: '%TEST_DB_USER%' - password: '%TEST_DB_PASSWORD%' + dsn: 'mysql:host=%DB_HOST%;dbname=%DB_NAME%' + user: '%DB_USER%' + password: '%DB_PASSWORD%' populator: 'mysql -u $user -p$password -h $host $dbname < $dump' dump: 'tests/_data/dump.sql' populate: true cleanup: true - url: 'http://localhost' + waitlock: 0 + url: '%WP_URL%' urlReplacement: true - tablePrefix: '%TEST_WP_TABLE_PREFIX%' + tablePrefix: '%WP_TABLE_PREFIX%' WPBrowser: - url: 'http://localhost' + url: '%WP_URL%' wpRootFolder: '%WP_ROOT_FOLDER%' adminUsername: '%ADMIN_USERNAME%' adminPassword: '%ADMIN_PASSWORD%' adminPath: '/wp-admin' REST: depends: WPBrowser - url: 'http://localhost' + url: '%WP_URL%' WPFilesystem: wpRootFolder: '%WP_ROOT_FOLDER%' plugins: '/wp-content/plugins' @@ -60,8 +62,8 @@ modules: uploads: '/wp-content/uploads' WPLoader: wpRootFolder: '%WP_ROOT_FOLDER%' - dbName: 'wordpress_tests' - dbHost: 'testing-db' + dbName: '%DB_NAME%' + dbHost: '%DB_HOST%' dbUser: '%DB_USER%' dbPassword: '%DB_PASSWORD%' tablePrefix: '%WP_TABLE_PREFIX%' diff --git a/codeception.yml b/codeception.yml deleted file mode 100644 index 16e28dcb4..000000000 --- a/codeception.yml +++ /dev/null @@ -1,74 +0,0 @@ -paths: - tests: tests - log: tests/_output - data: tests/_data - support: tests/_support - envs: tests/_envs -actor_suffix: Tester -settings: - colors: true - memory_limit: 1024M -coverage: - enabled: true - remote: true - whitelist: - include: - - wp-graphql-woocommerce.php - - access-functions.php - - class-inflect.php - - includes/*.php -extensions: - enabled: - - Codeception\Extension\RunFailed - commands: - - Codeception\Command\GenerateWPUnit - - Codeception\Command\GenerateWPRestApi - - Codeception\Command\GenerateWPRestController - - Codeception\Command\GenerateWPRestPostTypeController - - Codeception\Command\GenerateWPAjax - - Codeception\Command\GenerateWPCanonical - - Codeception\Command\GenerateWPXMLRPC -params: - - .env -modules: - config: - WPDb: - dsn: 'mysql:host=%TEST_DB_HOST%;dbname=%DB_NAME%' - user: '%DB_USER%' - password: '%DB_PASSWORD%' - dump: 'tests/_data/dump.sql' - #import the dump before the tests; this means the test site database will be repopulated before the tests. - populate: true - # re-import the dump between tests; this means the test site database will be repopulated between the tests. - cleanup: true - waitlock: 0 - url: '%WP_URL%' - urlReplacement: true #replace the hardcoded dump URL with the one above - tablePrefix: '%WP_TABLE_PREFIX%' - WPBrowser: - url: '%WP_URL%' - adminUsername: '%ADMIN_USERNAME%' - adminPassword: '%ADMIN_PASSWORD%' - adminPath: '%ADMIN_PATH%' - REST: - depends: WPBrowser - url: '%WP_URL%' - WPFilesystem: - wpRootFolder: '%WP_ROOT_FOLDER%' - plugins: '/wp-content/plugins' - mu-plugins: '/wp-content/mu-plugins' - themes: '/wp-content/themes' - uploads: '/wp-content/uploads' - WPLoader: - wpRootFolder: "%TEST_WP_ROOT_FOLDER%" - dbName: "%TEST_DB_NAME%" - dbHost: "%TEST_DB_HOST%" - dbUser: "%TEST_DB_USER%" - dbPassword: "%TEST_DB_PASSWORD%" - tablePrefix: "%TEST_TABLE_PREFIX%" - domain: "%TEST_WP_DOMAIN%" - adminEmail: "%TEST_ADMIN_EMAIL%" - title: "Test" - plugins: ['woocommerce/woocommerce.php', 'wp-graphql/wp-graphql.php', 'wp-graphql-woocommerce/wp-graphql-woocommerce.php'] - activatePlugins: ['woocommerce/woocommerce.php', 'wp-graphql/wp-graphql.php', 'wp-graphql-woocommerce/wp-graphql-woocommerce.php'] - configFile: "tests/_data/config.php" diff --git a/docker-compose.yml b/docker-compose.yml index eb1c8823b..7f3173eea 100644 --- a/docker-compose.yml +++ b/docker-compose.yml @@ -8,7 +8,7 @@ services: volumes: - '.:/var/www/html/wp-content/plugins/wp-graphql-woocommerce' - './.log/app:/var/log/apache2' - env_file: .env + env_file: .env.dist environment: WP_URL: 'http://localhost:8001' WP_DOMAIN: 'localhost:8001' @@ -38,24 +38,20 @@ services: - testing_db build: context: . - dockerfile: Dockerfile.tester + dockerfile: Dockerfile args: DESIRED_PHP_VERSION: "${PHP_VERSION:-7.2}" DESIRED_WP_VERSION: "${WP_VERSION:-5.2.2}" image: woographql-testing volumes: - '.:/var/www/html/wp-content/plugins/wp-graphql-woocommerce' - - './tests:/var/www/html/tests' - './.log/testing:/var/log/apache2' - env_file: .env + env_file: .env.dist environment: + WPGRAPHQL_WOOCOMMERCE_AUTOLOAD: 1 TEST_DB_HOST: testing_db - TEST_DB_USER: wordpress - TEST_DB_PASSWORD: wordpress DB_HOST: app_db - DB_USER: wordpress - DB_PASSWORD: wordpress - WPGRAPHQL_WOOCOMMERCE_AUTOLOAD: 1 + WP_URL: 'http://localhost' networks: testing: @@ -63,7 +59,7 @@ services: image: mysql:5.7 environment: MYSQL_ROOT_PASSWORD: root - MYSQL_DATABASE: wordpress_tests + MYSQL_DATABASE: woographql_tests MYSQL_USER: wordpress MYSQL_PASSWORD: wordpress ports: diff --git a/includes/mutation/class-cart-add-item.php b/includes/mutation/class-cart-add-item.php index 557112834..2e3bf8674 100644 --- a/includes/mutation/class-cart-add-item.php +++ b/includes/mutation/class-cart-add-item.php @@ -75,8 +75,7 @@ public static function get_output_fields() { 'cartItem' => array( 'type' => 'CartItem', 'resolve' => function ( $payload ) { - $cart = WC()->cart; - $item = $cart->get_cart_item( $payload['key'] ); + $item = \WC()->cart->get_cart_item( $payload['key'] ); return $item; }, @@ -95,6 +94,9 @@ public static function mutate_and_get_payload() { if ( empty( $input['productId'] ) ) { throw new UserError( __( 'No product ID provided', 'wp-graphql-woocommerce' ) ); } + if ( ! \wc_get_product( $input['productId'] ) ) { + throw new UserError( __( 'No product found matching the ID provided', 'wp-graphql-woocommerce' ) ); + } // Prepare args for "add_to_cart" from input data. $cart_item_args = Cart_Mutation::prepare_cart_item( $input, $context, $info ); @@ -102,6 +104,10 @@ public static function mutate_and_get_payload() { // Add item to cart and get item key. $cart_item_key = \WC()->cart->add_to_cart( ...$cart_item_args ); + if ( ! $cart_item_key ) { + throw new UserError( __( 'Failed to add cart item. Please check input.', 'wp-graphql-woocommerce' ) ); + } + // Return payload. return array( 'key' => $cart_item_key ); }; diff --git a/tests/functional/QLSessionHandlerCest.php b/tests/functional/QLSessionHandlerCest.php index 53464420a..5e57dbcb7 100644 --- a/tests/functional/QLSessionHandlerCest.php +++ b/tests/functional/QLSessionHandlerCest.php @@ -7,7 +7,7 @@ public function _before( FunctionalTester $I ) { // Create Product $this->product_id = $I->havePostInDatabase( array( 'post_type' => 'product', - 'post_title' => 't-shirt', + 'post_name' => 't-shirt', 'meta_input' => array( '_visibility' => 'visible', '_sku' => '', @@ -44,6 +44,9 @@ public function _before( FunctionalTester $I ) { '_wc_review_count' => 0, ), )); + $term_id = $I->grabTermIdFromDatabase( [ 'name' => 'simple', 'slug' => 'simple' ] ); + $term_taxonomy_id = $I->grabTermTaxonomyIdFromDatabase( [ 'term_id' => $term_id, 'taxonomy' => 'product_type' ] ); + $I->haveTermRelationshipInDatabase( $this->product_id, $term_id ); } // tests diff --git a/vendor/composer/ClassLoader.php b/vendor/composer/ClassLoader.php index 95f7e0978..fce8549f0 100644 --- a/vendor/composer/ClassLoader.php +++ b/vendor/composer/ClassLoader.php @@ -279,7 +279,7 @@ public function isClassMapAuthoritative() */ public function setApcuPrefix($apcuPrefix) { - $this->apcuPrefix = function_exists('apcu_fetch') && ini_get('apc.enabled') ? $apcuPrefix : null; + $this->apcuPrefix = function_exists('apcu_fetch') && filter_var(ini_get('apc.enabled'), FILTER_VALIDATE_BOOLEAN) ? $apcuPrefix : null; } /** diff --git a/wp-graphql-woocommerce.php b/wp-graphql-woocommerce.php index 3ce42aa65..4bec32d81 100644 --- a/wp-graphql-woocommerce.php +++ b/wp-graphql-woocommerce.php @@ -25,6 +25,9 @@ * This file should only exist locally or when CI bootstraps the environment for testing */ if ( file_exists( __DIR__ . '/c3.php' ) ) { + // Get tests output directory. + $test_dir = __DIR__ . '/tests/output'; + define( 'C3_CODECOVERAGE_ERROR_LOG_FILE', $test_dir . '/c3_error.log' ); require_once __DIR__ . '/c3.php'; } From c5996ebf85d5cb837da25010d133ddb5bea54b58 Mon Sep 17 00:00:00 2001 From: Geoff Taylor Date: Thu, 25 Jul 2019 13:47:40 -0400 Subject: [PATCH 15/24] job matrix updated. --- .travis.yml | 17 ++++++++++------- 1 file changed, 10 insertions(+), 7 deletions(-) diff --git a/.travis.yml b/.travis.yml index 45d4497b3..7a162c77d 100644 --- a/.travis.yml +++ b/.travis.yml @@ -30,13 +30,16 @@ env: global: - WP_CORE_DIR: /tmp/wordpress matrix: - - PHP_VERSION=7.3 WP_VERSION=5.2.2 COVERAGE=1 - - PHP_VERSION=7.2 PHPCS=1 - - PHP_VERSION=7.2 WP_VERSION=5.2.2 - - PHP_VERSION=7.1 WP_VERSION=5.2.2 - - PHP_VERSION=7.0 WP_VERSION=5.2.2 - - PHP_VERSION=5.6 WP_VERSION=4.9 - - PHP_VERSION=5.6 WP_VERSION=5.0.2 DEBUG=1 + - PHP_VERSION=7.3 WP_VERSION=5.2 COVERAGE=1 + - PHP_VERSION=7.3 PHPCS=1 + - PHP_VERSION=7.2 WP_VERSION=5.2 + - PHP_VERSION=7.2 WP_VERSION=4.9 + - PHP_VERSION=7.1 WP_VERSION=5.2 + - PHP_VERSION=7.1 WP_VERSION=4.9 + - PHP_VERSION=7.0 WP_VERSION=5.2 + - PHP_VERSION=7.0 WP_VERSION=4.9 + - PHP_VERSION=5.6 WP_VERSION=5.0 DEBUG=1 + - PHP_VERSION=5.6 WP_VERSION=4.9 DEBUG=1 before_install: - sudo rm /usr/local/bin/docker-compose From 440769929654f2ef59bc37a593919331dea30762 Mon Sep 17 00:00:00 2001 From: Geoff Taylor Date: Thu, 25 Jul 2019 14:17:00 -0400 Subject: [PATCH 16/24] package.json updated --- .travis.yml | 2 +- composer.json | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.travis.yml b/.travis.yml index 7a162c77d..813f7e296 100644 --- a/.travis.yml +++ b/.travis.yml @@ -36,7 +36,7 @@ env: - PHP_VERSION=7.2 WP_VERSION=4.9 - PHP_VERSION=7.1 WP_VERSION=5.2 - PHP_VERSION=7.1 WP_VERSION=4.9 - - PHP_VERSION=7.0 WP_VERSION=5.2 + - PHP_VERSION=7.0 WP_VERSION=5.0 - PHP_VERSION=7.0 WP_VERSION=4.9 - PHP_VERSION=5.6 WP_VERSION=5.0 DEBUG=1 - PHP_VERSION=5.6 WP_VERSION=4.9 DEBUG=1 diff --git a/composer.json b/composer.json index ffeb55dfe..824eba6a4 100644 --- a/composer.json +++ b/composer.json @@ -22,7 +22,7 @@ } ], "require-dev": { - "lucatume/wp-browser": "^2.2" + "lucatume/wp-browser": ">=2.2.1 <2.2.8" }, "config": { "optimize-autoloader": true From aae33f813162f5a4b509d8e32d2916a0dd896a5c Mon Sep 17 00:00:00 2001 From: Geoff Taylor Date: Thu, 25 Jul 2019 14:38:30 -0400 Subject: [PATCH 17/24] php5.6 xdebug installation patched. --- Dockerfile | 2 +- composer.json | 6 +++--- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/Dockerfile b/Dockerfile index bc9d55186..0d04a7b9e 100644 --- a/Dockerfile +++ b/Dockerfile @@ -17,7 +17,7 @@ SHELL [ "/bin/bash", "-c" ] RUN docker-php-ext-install pdo_mysql # Install Xdebug -RUN yes | pecl install xdebug \ +RUN if [ "$DESIRED_PHP_VERSION" -ne "5.6" ]; then yes | pecl install xdebug; else yes | pecl install xdebug-2.5.5; fi \ && echo "zend_extension=$(find /usr/local/lib/php/extensions/ -name xdebug.so)" > /usr/local/etc/php/conf.d/xdebug.ini \ && echo "xdebug.remote_enable=on" >> /usr/local/etc/php/conf.d/xdebug.ini \ && echo "xdebug.remote_autostart=off" >> /usr/local/etc/php/conf.d/xdebug.ini diff --git a/composer.json b/composer.json index 824eba6a4..f3c6bd5f1 100644 --- a/composer.json +++ b/composer.json @@ -21,6 +21,9 @@ "role": "Lead developer" } ], + "require": { + "php": ">=5.6.0" + }, "require-dev": { "lucatume/wp-browser": ">=2.2.1 <2.2.8" }, @@ -35,9 +38,6 @@ "includes/" ] }, - "require": { - "php": ">=5.6.0" - }, "scripts": { "install-wp-tests": "bash bin/install-wp-tests.sh", "test": "vendor/bin/codecept run", From da77dcb169c61835003e0d33d1ec63c42f0018ec Mon Sep 17 00:00:00 2001 From: Geoff Taylor Date: Thu, 25 Jul 2019 15:17:50 -0400 Subject: [PATCH 18/24] fixed Dockerfile. --- .travis.yml | 5 ++--- Dockerfile | 8 ++++++-- 2 files changed, 8 insertions(+), 5 deletions(-) diff --git a/.travis.yml b/.travis.yml index 813f7e296..fde0696d2 100644 --- a/.travis.yml +++ b/.travis.yml @@ -75,8 +75,7 @@ before_script: docker-compose build \ --build-arg DESIRED_PHP_VERSION=$(PHP_VERSION) \ --build-arg DESIRED_WP_VERSION=$(WP_VERSION) \ - woographql - ls -al + testing fi # Install PHP CodeSniffer and WPCS. - | @@ -112,6 +111,6 @@ after_success: # Runs Coveralls.io client - | if [ "$COVERAGE" == "1" ]; then - travis_retry php vendor/bin/php-coveralls -v + travis_retry vendor/bin/php-coveralls -v fi diff --git a/Dockerfile b/Dockerfile index 0d04a7b9e..e96ee2a4b 100644 --- a/Dockerfile +++ b/Dockerfile @@ -6,18 +6,22 @@ ARG DESIRED_WP_VERSION ARG DESIRED_PHP_VERSION -FROM kidunot89/woographql-app:wp${DESIRED_WP_VERSION:-5.2.2}-php${DESIRED_PHP_VERSION:-7.3} +FROM kidunot89/woographql-app:wp${DESIRED_WP_VERSION}-php${DESIRED_PHP_VERSION} + LABEL author=kidunot89 LABEL author_uri=https://github.com/kidunot89 SHELL [ "/bin/bash", "-c" ] +ARG DESIRED_WP_VERSION +ARG DESIRED_PHP_VERSION + # Install php extensions RUN docker-php-ext-install pdo_mysql # Install Xdebug -RUN if [ "$DESIRED_PHP_VERSION" -ne "5.6" ]; then yes | pecl install xdebug; else yes | pecl install xdebug-2.5.5; fi \ +RUN if [ "$DESIRED_PHP_VERSION" == "5.6" ]; then yes | pecl install xdebug-2.5.5; else yes | pecl install xdebug; fi \ && echo "zend_extension=$(find /usr/local/lib/php/extensions/ -name xdebug.so)" > /usr/local/etc/php/conf.d/xdebug.ini \ && echo "xdebug.remote_enable=on" >> /usr/local/etc/php/conf.d/xdebug.ini \ && echo "xdebug.remote_autostart=off" >> /usr/local/etc/php/conf.d/xdebug.ini From 7c7d20c67117b450f011a59c5c9d69b6a56bbd11 Mon Sep 17 00:00:00 2001 From: Geoff Taylor Date: Thu, 25 Jul 2019 15:22:16 -0400 Subject: [PATCH 19/24] fixed variable substitution. --- .travis.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.travis.yml b/.travis.yml index fde0696d2..9b1b87d17 100644 --- a/.travis.yml +++ b/.travis.yml @@ -73,8 +73,8 @@ before_script: COMPOSER_MEMORY_LIMIT=-1 travis_retry composer require php-coveralls/php-coveralls fi docker-compose build \ - --build-arg DESIRED_PHP_VERSION=$(PHP_VERSION) \ - --build-arg DESIRED_WP_VERSION=$(WP_VERSION) \ + --build-arg DESIRED_PHP_VERSION=${PHP_VERSION} \ + --build-arg DESIRED_WP_VERSION=${WP_VERSION} \ testing fi # Install PHP CodeSniffer and WPCS. From 07239f93e31262be7532f5004f24510f156c84f1 Mon Sep 17 00:00:00 2001 From: Geoff Taylor Date: Thu, 25 Jul 2019 15:42:19 -0400 Subject: [PATCH 20/24] --no-cache flag added to composer install statement. --- .travis.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.travis.yml b/.travis.yml index 9b1b87d17..57f346a80 100644 --- a/.travis.yml +++ b/.travis.yml @@ -66,7 +66,7 @@ before_script: if [ ! -z "$WP_VERSION" ]; then # Install and config Codeception cp .env.dist .env - travis_retry composer install --prefer-source --no-interaction + travis_retry composer install --prefer-source --no-interaction --no-cache if [ "$COVERAGE" == "1" ]; then # Install Coveralls mkdir -p build/logs From 8af4aa72289ad735fda3b75e31541d53c73b360a Mon Sep 17 00:00:00 2001 From: Geoff Taylor Date: Thu, 25 Jul 2019 15:52:56 -0400 Subject: [PATCH 21/24] --no-cache flag removed. --- .travis.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.travis.yml b/.travis.yml index 57f346a80..9b1b87d17 100644 --- a/.travis.yml +++ b/.travis.yml @@ -66,7 +66,7 @@ before_script: if [ ! -z "$WP_VERSION" ]; then # Install and config Codeception cp .env.dist .env - travis_retry composer install --prefer-source --no-interaction --no-cache + travis_retry composer install --prefer-source --no-interaction if [ "$COVERAGE" == "1" ]; then # Install Coveralls mkdir -p build/logs From 1d9f1b603266f90210b8ba56c7b8230edbcd1bca Mon Sep 17 00:00:00 2001 From: Geoff Taylor Date: Thu, 25 Jul 2019 17:28:39 -0400 Subject: [PATCH 22/24] .travis.yml updated. --- .travis.yml | 37 ++++++++++++++++++++------------- vendor/composer/ClassLoader.php | 2 +- 2 files changed, 23 insertions(+), 16 deletions(-) diff --git a/.travis.yml b/.travis.yml index 9b1b87d17..a3f3b36d0 100644 --- a/.travis.yml +++ b/.travis.yml @@ -25,21 +25,28 @@ cache: - vendor - $HOME/.composer/cache -# Set the global environment variables -env: - global: - - WP_CORE_DIR: /tmp/wordpress - matrix: - - PHP_VERSION=7.3 WP_VERSION=5.2 COVERAGE=1 - - PHP_VERSION=7.3 PHPCS=1 - - PHP_VERSION=7.2 WP_VERSION=5.2 - - PHP_VERSION=7.2 WP_VERSION=4.9 - - PHP_VERSION=7.1 WP_VERSION=5.2 - - PHP_VERSION=7.1 WP_VERSION=4.9 - - PHP_VERSION=7.0 WP_VERSION=5.0 - - PHP_VERSION=7.0 WP_VERSION=4.9 - - PHP_VERSION=5.6 WP_VERSION=5.0 DEBUG=1 - - PHP_VERSION=5.6 WP_VERSION=4.9 DEBUG=1 +matrix: + include: + - php: 7.3 + env: PHP_VERSION=7.3 WP_VERSION=5.2 COVERAGE=1 + - php: 7.3 + env: PHP_VERSION=7.3 PHPCS=1 + - php: 7.2 + env: PHP_VERSION=7.2 WP_VERSION=5.2 + - php: 7.2 + env: PHP_VERSION=7.2 WP_VERSION=4.9 + - php: 7.1 + env: PHP_VERSION=7.1 WP_VERSION=5.2 + - php: 7.1 + env: PHP_VERSION=7.1 WP_VERSION=4.9 + - php: 7.0 + env: PHP_VERSION=7.0 WP_VERSION=5.0 + - php: 7.0 + env: PHP_VERSION=7.0 WP_VERSION=4.9 + - php: 5.6 + env: PHP_VERSION=5.6 WP_VERSION=5.0 DEBUG=1 + - php: 5.6 + env: PHP_VERSION=5.6 WP_VERSION=4.9 DEBUG=1 before_install: - sudo rm /usr/local/bin/docker-compose diff --git a/vendor/composer/ClassLoader.php b/vendor/composer/ClassLoader.php index fce8549f0..95f7e0978 100644 --- a/vendor/composer/ClassLoader.php +++ b/vendor/composer/ClassLoader.php @@ -279,7 +279,7 @@ public function isClassMapAuthoritative() */ public function setApcuPrefix($apcuPrefix) { - $this->apcuPrefix = function_exists('apcu_fetch') && filter_var(ini_get('apc.enabled'), FILTER_VALIDATE_BOOLEAN) ? $apcuPrefix : null; + $this->apcuPrefix = function_exists('apcu_fetch') && ini_get('apc.enabled') ? $apcuPrefix : null; } /** From 2bbe110013901d81a69761d71393e930eff04f8a Mon Sep 17 00:00:00 2001 From: Geoff Taylor Date: Thu, 25 Jul 2019 18:04:59 -0400 Subject: [PATCH 23/24] php5.6 test compatibility fixed. --- tests/wpunit/CartMutationsTest.php | 4 ++-- tests/wpunit/CartQueriesTest.php | 4 ++-- tests/wpunit/CheckoutMutationTest.php | 4 ++-- tests/wpunit/CouponQueriesTest.php | 4 ++-- tests/wpunit/CustomerMutationsTest.php | 4 ++-- tests/wpunit/CustomerQueriesTest.php | 4 ++-- tests/wpunit/OrderItemQueriesTest.php | 4 ++-- tests/wpunit/OrderMutationsTest.php | 4 ++-- tests/wpunit/OrderQueriesTest.php | 4 ++-- tests/wpunit/ProductAttributeQueriesTest.php | 4 ++-- tests/wpunit/ProductQueriesTest.php | 4 ++-- tests/wpunit/ProductVariationQueriesTest.php | 4 ++-- tests/wpunit/RefundQueriesTest.php | 4 ++-- tests/wpunit/ShippingMethodQueriesTest.php | 4 ++-- tests/wpunit/TaxRateQueriesTest.php | 4 ++-- tests/wpunit/VariationAttributeQueriesTest.php | 4 ++-- 16 files changed, 32 insertions(+), 32 deletions(-) diff --git a/tests/wpunit/CartMutationsTest.php b/tests/wpunit/CartMutationsTest.php index 52a02f41e..944ab179a 100644 --- a/tests/wpunit/CartMutationsTest.php +++ b/tests/wpunit/CartMutationsTest.php @@ -8,7 +8,7 @@ class CartMutationsTest extends \Codeception\TestCase\WPTestCase { private $variation; private $cart; - public function setUp(): void { + public function setUp() { parent::setUp(); $this->shop_manager = $this->factory->user->create( array( 'role' => 'shop_manager' ) ); @@ -22,7 +22,7 @@ public function setUp(): void { WC()->cart->empty_cart( true ); } - public function tearDown(): void { + public function tearDown() { \WC()->cart->empty_cart(); parent::tearDown(); diff --git a/tests/wpunit/CartQueriesTest.php b/tests/wpunit/CartQueriesTest.php index b01e6a8a0..a2daa7edd 100644 --- a/tests/wpunit/CartQueriesTest.php +++ b/tests/wpunit/CartQueriesTest.php @@ -8,7 +8,7 @@ class CartQueriesTest extends \Codeception\TestCase\WPTestCase { private $coupon_helper; private $helper; - public function setUp(): void { + public function setUp() { // before parent::setUp(); @@ -23,7 +23,7 @@ public function setUp(): void { WC()->cart->empty_cart( true ); } - public function tearDown(): void { + public function tearDown() { // your tear down methods here // then diff --git a/tests/wpunit/CheckoutMutationTest.php b/tests/wpunit/CheckoutMutationTest.php index 0c749f1e4..f2e9be3de 100644 --- a/tests/wpunit/CheckoutMutationTest.php +++ b/tests/wpunit/CheckoutMutationTest.php @@ -3,7 +3,7 @@ use WPGraphQL\Type\WPEnumType; class CheckoutMutationTest extends \Codeception\TestCase\WPTestCase { - public function setUp(): void { + public function setUp() { // before parent::setUp(); @@ -69,7 +69,7 @@ function() { wp_logout(); } - public function tearDown(): void { + public function tearDown() { // your tear down methods here // then diff --git a/tests/wpunit/CouponQueriesTest.php b/tests/wpunit/CouponQueriesTest.php index 945517fe6..1b1968c96 100644 --- a/tests/wpunit/CouponQueriesTest.php +++ b/tests/wpunit/CouponQueriesTest.php @@ -7,7 +7,7 @@ class CouponQueriesTest extends \Codeception\TestCase\WPTestCase { private $coupon; private $helper; - public function setUp(): void { + public function setUp() { parent::setUp(); $this->shop_manager = $this->factory->user->create( array( 'role' => 'shop_manager' ) ); @@ -22,7 +22,7 @@ public function setUp(): void { ); } - public function tearDown(): void { + public function tearDown() { // your tear down methods here // then parent::tearDown(); diff --git a/tests/wpunit/CustomerMutationsTest.php b/tests/wpunit/CustomerMutationsTest.php index 1adfaecea..f6a7bac88 100644 --- a/tests/wpunit/CustomerMutationsTest.php +++ b/tests/wpunit/CustomerMutationsTest.php @@ -1,7 +1,7 @@ new_customer = $this->helper->create(); } - public function tearDown(): void { + public function tearDown() { // your tear down methods here // then parent::tearDown(); diff --git a/tests/wpunit/OrderItemQueriesTest.php b/tests/wpunit/OrderItemQueriesTest.php index 94d219658..c867a768e 100644 --- a/tests/wpunit/OrderItemQueriesTest.php +++ b/tests/wpunit/OrderItemQueriesTest.php @@ -10,7 +10,7 @@ class OrderItemQueriesTest extends \Codeception\TestCase\WPTestCase { private $item_helper; private $order_helper; - public function setUp(): void { + public function setUp() { parent::setUp(); $this->shop_manager = $this->factory->user->create( array( 'role' => 'shop_manager' ) ); @@ -20,7 +20,7 @@ public function setUp(): void { $this->order = $this->order_helper->create(); } - public function tearDown(): void { + public function tearDown() { // your tear down methods here // then diff --git a/tests/wpunit/OrderMutationsTest.php b/tests/wpunit/OrderMutationsTest.php index 39167f324..b259f13cf 100644 --- a/tests/wpunit/OrderMutationsTest.php +++ b/tests/wpunit/OrderMutationsTest.php @@ -4,7 +4,7 @@ class OrderMutationsTest extends \Codeception\TestCase\WPTestCase { - public function setUp(): void { + public function setUp() { // before parent::setUp(); @@ -42,7 +42,7 @@ public function setUp(): void { $this->order_id = $this->order->create(); } - public function tearDown(): void { + public function tearDown() { // your tear down methods here // then diff --git a/tests/wpunit/OrderQueriesTest.php b/tests/wpunit/OrderQueriesTest.php index 75a72922f..50475d10d 100644 --- a/tests/wpunit/OrderQueriesTest.php +++ b/tests/wpunit/OrderQueriesTest.php @@ -10,7 +10,7 @@ class OrderQueriesTest extends \Codeception\TestCase\WPTestCase { private $product_helper; private $customer_helper; - public function setUp(): void { + public function setUp() { parent::setUp(); $this->shop_manager = $this->factory->user->create( array( 'role' => 'shop_manager' ) ); @@ -21,7 +21,7 @@ public function setUp(): void { $this->order = $this->order_helper->create(); } - public function tearDown(): void { + public function tearDown() { // your tear down methods here // then parent::tearDown(); diff --git a/tests/wpunit/ProductAttributeQueriesTest.php b/tests/wpunit/ProductAttributeQueriesTest.php index b31ab302b..11ddde08d 100644 --- a/tests/wpunit/ProductAttributeQueriesTest.php +++ b/tests/wpunit/ProductAttributeQueriesTest.php @@ -8,7 +8,7 @@ class ProductAttributeQueriesTest extends \Codeception\TestCase\WPTestCase { private $product_id; private $variation_ids; - public function setUp(): void { + public function setUp() { parent::setUp(); $this->shop_manager = $this->factory->user->create( array( 'role' => 'shop_manager' ) ); @@ -20,7 +20,7 @@ public function setUp(): void { } - public function tearDown(): void { + public function tearDown() { parent::tearDown(); } diff --git a/tests/wpunit/ProductQueriesTest.php b/tests/wpunit/ProductQueriesTest.php index 796cf809b..48b1069d4 100644 --- a/tests/wpunit/ProductQueriesTest.php +++ b/tests/wpunit/ProductQueriesTest.php @@ -9,7 +9,7 @@ class ProductQueriesTest extends \Codeception\TestCase\WPTestCase { private $product_tag; private $product_cat; - public function setUp(): void { + public function setUp() { // before parent::setUp(); @@ -44,7 +44,7 @@ public function setUp(): void { update_term_meta( $category_id, 'thumbnail_id', $this->image_id ); } - public function tearDown(): void { + public function tearDown() { // your tear down methods here $product = \WC()->product_factory->get_product( $this->product ); $product->delete( true ); diff --git a/tests/wpunit/ProductVariationQueriesTest.php b/tests/wpunit/ProductVariationQueriesTest.php index 500480ec8..5477f69fc 100644 --- a/tests/wpunit/ProductVariationQueriesTest.php +++ b/tests/wpunit/ProductVariationQueriesTest.php @@ -7,7 +7,7 @@ class ProductVariationQueriesTest extends \Codeception\TestCase\WPTestCase { private $customer; private $products; - public function setUp(): void { + public function setUp() { parent::setUp(); $this->shop_manager = $this->factory->user->create( array( 'role' => 'shop_manager' ) ); @@ -17,7 +17,7 @@ public function setUp(): void { $this->products = $this->helper->create( $this->product_helper->create_variable() ); } - public function tearDown(): void { + public function tearDown() { // your tear down methods here // then diff --git a/tests/wpunit/RefundQueriesTest.php b/tests/wpunit/RefundQueriesTest.php index a63af3c79..6c096d4c5 100644 --- a/tests/wpunit/RefundQueriesTest.php +++ b/tests/wpunit/RefundQueriesTest.php @@ -9,7 +9,7 @@ class RefundQueriesTest extends \Codeception\TestCase\WPTestCase { private $order; private $refund; - public function setUp(): void { + public function setUp() { parent::setUp(); $this->shop_manager = $this->factory->user->create( array( 'role' => 'shop_manager' ) ); @@ -20,7 +20,7 @@ public function setUp(): void { $this->refund = $this->refund_helper->create( $this->order ); } - public function tearDown(): void { + public function tearDown() { // your tear down methods here // then parent::tearDown(); diff --git a/tests/wpunit/ShippingMethodQueriesTest.php b/tests/wpunit/ShippingMethodQueriesTest.php index a30df21ab..dc8dab69b 100644 --- a/tests/wpunit/ShippingMethodQueriesTest.php +++ b/tests/wpunit/ShippingMethodQueriesTest.php @@ -8,7 +8,7 @@ class ShippingMethodQueriesTest extends \Codeception\TestCase\WPTestCase { private $method; private $helper; - public function setUp(): void { + public function setUp() { parent::setUp(); $this->shop_manager = $this->factory->user->create( array( 'role' => 'shop_manager' ) ); @@ -17,7 +17,7 @@ public function setUp(): void { $this->method = 'flat_rate'; } - public function tearDown(): void { + public function tearDown() { // your tear down methods here // then parent::tearDown(); diff --git a/tests/wpunit/TaxRateQueriesTest.php b/tests/wpunit/TaxRateQueriesTest.php index e680d014d..10f8e12e6 100644 --- a/tests/wpunit/TaxRateQueriesTest.php +++ b/tests/wpunit/TaxRateQueriesTest.php @@ -8,7 +8,7 @@ class TaxRateQueriesTest extends \Codeception\TestCase\WPTestCase { private $rate; private $helper; - public function setUp(): void { + public function setUp() { parent::setUp(); $this->shop_manager = $this->factory->user->create( array( 'role' => 'shop_manager' ) ); @@ -17,7 +17,7 @@ public function setUp(): void { $this->rate = $this->helper->create(); } - public function tearDown(): void { + public function tearDown() { // your tear down methods here // then parent::tearDown(); diff --git a/tests/wpunit/VariationAttributeQueriesTest.php b/tests/wpunit/VariationAttributeQueriesTest.php index 5c25c6d8b..74a6a7de1 100644 --- a/tests/wpunit/VariationAttributeQueriesTest.php +++ b/tests/wpunit/VariationAttributeQueriesTest.php @@ -6,7 +6,7 @@ class VariationAttributeQueriesTest extends \Codeception\TestCase\WPTestCase { private $product_id; private $variation_id; - public function setUp(): void { + public function setUp() { // before parent::setUp(); @@ -19,7 +19,7 @@ public function setUp(): void { $this->variation_id = $ids['variations'][0]; } - public function tearDown(): void { + public function tearDown() { // your tear down methods here // then From c9e9ad6d26a30b6bfcc8f1443afa38c01b679a27 Mon Sep 17 00:00:00 2001 From: Geoff Taylor Date: Thu, 25 Jul 2019 18:26:53 -0400 Subject: [PATCH 24/24] .travis.yml updated. --- .travis.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.travis.yml b/.travis.yml index a3f3b36d0..95893060e 100644 --- a/.travis.yml +++ b/.travis.yml @@ -73,7 +73,7 @@ before_script: if [ ! -z "$WP_VERSION" ]; then # Install and config Codeception cp .env.dist .env - travis_retry composer install --prefer-source --no-interaction + COMPOSER_MEMORY_LIMIT=-1 travis_retry composer install --prefer-source --no-interaction if [ "$COVERAGE" == "1" ]; then # Install Coveralls mkdir -p build/logs