wodby / docker4drupal

Docker-based Drupal stack
https://wodby.com/docker4drupal
MIT License
1.24k stars 531 forks source link

Show Error instead of nginx - 502 Bad Gateway or WSOD on apache #437

Open mfrosch opened 4 years ago

mfrosch commented 4 years ago

Codebase Custom Drupal 8 Setup

Describe your issue The setup is working, but if I produce some error in the code, I get a "502 Bad Gateway" from nginx. In Drupal Watchdog Logs I can see the original PHP error.

For development I would like to print the error's directly in browser. NGINX_ERROR_LOG_LEVEL: debug is set. I also tried apache instead of nginx, but there I also dont get shown the error. If I run the site without docker, e. g. with xampp on windows, the error's are printed out.

I've did some research and upgraded the nginx and apache Tag Versions, but this didn't help me out.

Do you got a clue?

Output of docker info Client: Debug Mode: false

Server: Containers: 22 Running: 7 Paused: 0 Stopped: 15 Images: 10 Server Version: 19.03.8 Storage Driver: overlay2 Backing Filesystem: Supports d_type: true Native Overlay Diff: true Logging Driver: json-file Cgroup Driver: cgroupfs Plugins: Volume: local Network: bridge host ipvlan macvlan null overlay Log: awslogs fluentd gcplogs gelf journald json-file local logentries splunk syslog Swarm: inactive Runtimes: runc Default Runtime: runc Init Binary: docker-init containerd version: 7ad184331fa3e55e52b890ea95e65ba581ae3429 runc version: dc9208a3303feef5b3839f4323d9beb36df0a9dd init version: fec3683 Security Options: seccomp Profile: default Kernel Version: 4.19.76-linuxkit Operating System: Docker Desktop OSType: linux Architecture: x86_64 CPUs: 2 Total Memory: 1.943GiB Name: docker-desktop ID: Q34G:6IWX:E7YL:GKJP:LMFB:GCK3:LGJ2:KVZQ:TL3X:DNLF:PNYZ:37SD Docker Root Dir: /var/lib/docker Debug Mode: true File Descriptors: 98 Goroutines: 132 System Time: 2020-05-22T15:35:36.291408911Z EventsListeners: 5 Registry: https://index.docker.io/v1/ Labels: Experimental: false Insecure Registries: 127.0.0.0/8 Live Restore Enabled: false Product License: Community Engine

Contents of your docker-compose.yml

version: "3"

services:
  mariadb:
    image: wodby/mariadb:$MARIADB_TAG
    container_name: "${PROJECT_NAME}_mariadb"
    stop_grace_period: 30s
    environment:
      MYSQL_ROOT_PASSWORD: $DB_ROOT_PASSWORD
      MYSQL_DATABASE: $DB_NAME
      MYSQL_USER: $DB_USER
      MYSQL_PASSWORD: $DB_PASSWORD
    volumes:
      - ./mariadb-init:/docker-entrypoint-initdb.d # Place init .sql file(s) here.
#      - /path/to/mariadb/data/on/host:/var/lib/mysql # Use bind mount

  php:
    image: wodby/drupal-php:$PHP_TAG
    container_name: "${PROJECT_NAME}_php"
    environment:
      PHP_SENDMAIL_PATH: /usr/sbin/sendmail -t -i -S mailhog:1025
#      PHP_SENDMAIL_PATH: /usr/sbin/sendmail -t -i -S opensmtpd:25      
      DB_HOST: $DB_HOST
      DB_PORT: $DB_PORT
      DB_USER: $DB_USER
      DB_PASSWORD: $DB_PASSWORD
      DB_NAME: $DB_NAME
      DB_DRIVER: $DB_DRIVER
      PHP_FPM_USER: wodby
      PHP_FPM_GROUP: wodby
      COLUMNS: 80 # Set 80 columns for docker exec -it.
## Read instructions at https://wodby.com/docs/stacks/php/local/#xdebug
#      PHP_XDEBUG: 1
#      PHP_XDEBUG_DEFAULT_ENABLE: 1
#      PHP_XDEBUG_REMOTE_CONNECT_BACK: 0
#      PHP_IDE_CONFIG: serverName=my-ide
#      PHP_XDEBUG_IDEKEY: "my-ide"
#      PHP_XDEBUG_REMOTE_HOST: host.docker.internal # Docker 18.03+ Mac/Win
#      PHP_XDEBUG_REMOTE_HOST: 172.17.0.1 # Linux
#      PHP_XDEBUG_REMOTE_HOST: 10.254.254.254 # macOS, Docker < 18.03
#      PHP_XDEBUG_REMOTE_HOST: 10.0.75.1 # Windows, Docker < 18.03
#      PHP_XDEBUG_REMOTE_LOG: /tmp/php-xdebug.log
## PHPUnit Drupal testing configurations
#      SIMPLETEST_BASE_URL: "http://nginx"
#      SIMPLETEST_DB: "${DB_DRIVER}://${DB_USER}:${DB_PASSWORD}@${DB_HOST}/${DB_NAME}#tests_"
#      MINK_DRIVER_ARGS_WEBDRIVER: '["chrome", {"browserName":"chrome","goog:chromeOptions":{"args":["--disable-gpu","--headless"]}}, "http://chrome:9515"]'

    volumes:
#      - ./htdocs:/var/www/html:cached
      - ./htdocs:/var/www/html
## For macOS users (https://wodby.com/docs/stacks/drupal/local#docker-for-mac)
#      - ./:/var/www/html:cached # User-guided caching
#      - docker-sync:/var/www/html # Docker-sync
## For XHProf and Xdebug profiler traces
#      - files:/mnt/files

  nginx:
    image: wodby/nginx:$NGINX_TAG
    container_name: "${PROJECT_NAME}_nginx"
    depends_on:
      - php
    environment:
      NGINX_STATIC_OPEN_FILE_CACHE: "off"
      NGINX_ERROR_LOG_LEVEL: debug
      NGINX_BACKEND_HOST: php
      NGINX_SERVER_ROOT: /var/www/html
      NGINX_VHOST_PRESET: $NGINX_VHOST_PRESET
#      NGINX_DRUPAL_FILE_PROXY_URL: http://example.com
    volumes:
      - ./htdocs:/var/www/html:cached
      # - ./:/var/www/html
# For macOS users (https://wodby.com/docs/stacks/drupal/local#docker-for-mac)
#      - ./:/var/www/html:cached # User-guided caching
#      - docker-sync:/var/www/html # Docker-sync
    labels:
      - "traefik.http.routers.${PROJECT_NAME}_nginx.rule=Host(`${PROJECT_BASE_URL}`)"

  mailhog:
    image: mailhog/mailhog
    container_name: "${PROJECT_NAME}_mailhog"
    labels:
      - "traefik.http.services.${PROJECT_NAME}_mailhog.loadbalancer.server.port=8025"
      - "traefik.http.routers.${PROJECT_NAME}_mailhog.rule=Host(`mailhog.${PROJECT_BASE_URL}`)"

#  postgres:
#    image: wodby/postgres:$POSTGRES_TAG
#    container_name: "${PROJECT_NAME}_postgres"
#    stop_grace_period: 30s
#    environment:
#      POSTGRES_PASSWORD: $DB_PASSWORD
#      POSTGRES_DB: $DB_NAME
#      POSTGRES_USER: $DB_USER
#    volumes:
#      - ./postgres-init:/docker-entrypoint-initdb.d # Place init file(s) here.
#      - /path/to/postgres/data/on/host:/var/lib/postgresql/data # Use bind mount

#  apache:
#    image: wodby/apache:$APACHE_TAG
#    container_name: "${PROJECT_NAME}_apache"
#    depends_on:
#      - php
#    environment:
#      APACHE_LOG_LEVEL: debug
#      APACHE_BACKEND_HOST: php
#      APACHE_VHOST_PRESET: php
#      APACHE_DOCUMENT_ROOT: /var/www/html
#    volumes:
#      - ./htdocs:/var/www/html
##      - ./htdocs:/var/www/html:cached
##      - ./:/var/www/html
## For macOS users (https://wodby.com/docs/stacks/drupal/local#docker-for-mac)
##      - ./:/var/www/html:cached # User-guided caching
##      - docker-sync:/var/www/html # Docker-sync
#    labels:
#      - "traefik.http.routers.${PROJECT_NAME}_apache.rule=Host(`${PROJECT_BASE_URL}`)"

#  varnish:
#    image: wodby/varnish:$VARNISH_TAG
#    container_name: "${PROJECT_NAME}_varnish"
#    depends_on:
#      - nginx
#    environment:
#      VARNISH_SECRET: secret
#      VARNISH_BACKEND_HOST: nginx
#      VARNISH_BACKEND_PORT: 80
#      VARNISH_CONFIG_PRESET: drupal
#      VARNISH_ALLOW_UNRESTRICTED_PURGE: 1
#    labels:
#      - "traefik.http.services.${PROJECT_NAME}_varnish.loadbalancer.server.port=6081"
#      - "traefik.http.routers.${PROJECT_NAME}_varnish.rule=Host(`varnish.${PROJECT_BASE_URL}`)"

#  redis:
#    container_name: "${PROJECT_NAME}_redis"
#    image: wodby/redis:$REDIS_TAG

#  adminer:
#    container_name: "${PROJECT_NAME}_adminer"
#    image: wodby/adminer:$ADMINER_TAG
#    environment:
## For PostgreSQL:
##      ADMINER_DEFAULT_DB_DRIVER: pgsql
#      ADMINER_DEFAULT_DB_HOST: $DB_HOST
#      ADMINER_DEFAULT_DB_NAME: $DB_NAME
#    labels:
#      - "traefik.http.routers.${PROJECT_NAME}_adminer.rule=Host(`adminer.${PROJECT_BASE_URL}`)"

  pma:
    image: phpmyadmin/phpmyadmin
    container_name: "${PROJECT_NAME}_pma"
    environment:
      PMA_HOST: $DB_HOST
      PMA_USER: $DB_USER
      PMA_PASSWORD: $DB_PASSWORD
      UPLOAD_LIMIT: 1G
    labels:
      - "traefik.http.routers.${PROJECT_NAME}_pma.rule=Host(`pma.${PROJECT_BASE_URL}`)"

#  solr:
#    image: wodby/solr:$SOLR_TAG
#    container_name: "${PROJECT_NAME}_solr"
#    environment:
#      SOLR_DEFAULT_CONFIG_SET: $SOLR_CONFIG_SET
#      SOLR_HEAP: 1024m
#    labels:
#      - "traefik.http.routers.${PROJECT_NAME}_solr.rule=Host(`solr.${PROJECT_BASE_URL}`)"

#  drupal-node:
#    image: wodby/drupal-node:$DRUPAL_NODE_TAG
#    container_name: "${PROJECT_NAME}_drupal_nodejs"
#    labels:
#      - "traefik.http.routers.${PROJECT_NAME}_drupal_node.rule=Host(`drupal_node.${PROJECT_BASE_URL}`)"
#    environment:
#      NODE_SERVICE_KEY: node-service-key

#  memcached:
#    container_name: "${PROJECT_NAME}_memcached"
#    image: wodby/memcached:$MEMCACHED_TAG

#  rsyslog:
#    container_name: "${PROJECT_NAME}_rsyslog"
#    image: wodby/rsyslog:$RSYSLOG_TAG

#  athenapdf:
#    image: arachnysdocker/athenapdf-service:$ATHENAPDF_TAG
#    container_name: "${PROJECT_NAME}_athenapdf"
#    environment:
#      WEAVER_AUTH_KEY: weaver-auth-key
#      WEAVER_ATHENA_CMD: "athenapdf -S"
#      WEAVER_MAX_WORKERS: 10
#      WEAVER_MAX_CONVERSION_QUEUE: 50
#      WEAVER_WORKER_TIMEOUT: 90
#      WEAVER_CONVERSION_FALLBACK: "false"

#  node:
#    image: wodby/node:$NODE_TAG
#    container_name: "${PROJECT_NAME}_node"
#    working_dir: /var/www/html/path/to/theme/to/build
#    labels:
#      - "traefik.http.services.${PROJECT_NAME}_node.loadbalancer.server.port=3000"
#      - "traefik.http.routers.${PROJECT_NAME}_node.rule=Host(`node.${PROJECT_BASE_URL}`)"
#    expose:
#      - "3000"
#    volumes:
#      - ./:/var/www/html
#    command: sh -c 'yarn install && yarn run start'

#  blackfire:
#    image: blackfire/blackfire
#    container_name: "${PROJECT_NAME}_blackfire"
#    environment:
#      BLACKFIRE_SERVER_ID: XXXXX
#      BLACKFIRE_SERVER_TOKEN: YYYYY

#  webgrind:
#    image: wodby/webgrind:$WEBGRIND_TAG
#    container_name: "${PROJECT_NAME}_webgrind"
#    environment:
#      WEBGRIND_PROFILER_DIR: /mnt/files/xdebug/profiler
#    labels:
#      - "traefik.http.routers.${PROJECT_NAME}_webgrind.rule=Host(`webgrind.${PROJECT_BASE_URL}`)"
#    volumes:
#      - files:/mnt/files

#  elasticsearch:
#    image: wodby/elasticsearch:$ELASTICSEARCH_TAG
#    container_name: "${PROJECT_NAME}_elasticsearch"
#    environment:
#      ES_JAVA_OPTS: "-Xms500m -Xmx500m"
#    ulimits:
#      memlock:
#        soft: -1
#        hard: -1

#  kibana:
#    image: wodby/kibana:$KIBANA_TAG
#    container_name: "${PROJECT_NAME}_kibana"
#    depends_on:
#      - elasticsearch
#    labels:
#      - "traefik.http.services.${PROJECT_NAME}_kibana.loadbalancer.server.port=5601"
#      - "traefik.http.routers.${PROJECT_NAME}_kibana.rule=Host(`kibana.${PROJECT_BASE_URL}`)"

#  opensmtpd:
#    container_name: "${PROJECT_NAME}_opensmtpd"
#    image: wodby/opensmtpd:$OPENSMTPD_TAG

#  xhprof:
#    image: wodby/xhprof:$XHPROF_TAG
#    container_name: "${PROJECT_NAME}_xhprof"
#    restart: always
#    volumes:
#      - files:/mnt/files
#    labels:
#      - "traefik.http.routers.${PROJECT_NAME}_xhprof.rule=Host(`xhprof.${PROJECT_BASE_URL}`)"

#  chrome:
#    image: selenium/standalone-chrome:$SELENIUM_CHROME_TAG
#    container_name: "${PROJECT_NAME}_chrome"
#    volumes:
#      - /dev/shm:/dev/shm
#    entrypoint:
#      - chromedriver
#      - "--no-sandbox"
#      - "--disable-dev-shm-usage"
#      - "--log-path=/tmp/chromedriver.log"
#      - "--verbose"
#      - "--whitelisted-ips="

  portainer:
    image: portainer/portainer
    container_name: "${PROJECT_NAME}_portainer"
    command: --no-auth -H unix:///var/run/docker.sock
    volumes:
      - /var/run/docker.sock:/var/run/docker.sock
    labels:
      - "traefik.http.routers.${PROJECT_NAME}_portainer.rule=Host(`portainer.${PROJECT_BASE_URL}`)"

  traefik:
    image: traefik:v2.0
    container_name: "${PROJECT_NAME}_traefik"
    command: --api.insecure=true --providers.docker
    ports:
      - '80:80'
#      - '8080:8080' # Dashboard
    volumes:
      - /var/run/docker.sock:/var/run/docker.sock

#volumes:
## Docker-sync for macOS users
#  docker-sync:
#    external: true
## For Xdebug profiler
#  files:

Contents of your .env

### Documentation available at https://wodby.com/docs/stacks/drupal/local
### Changelog can be found at https://github.com/wodby/docker4drupal/releases
### Images tags format explained at https://github.com/wodby/docker4drupal#images-tags

### PROJECT SETTINGS

PROJECT_NAME=drupal8
PROJECT_BASE_URL=drupal8.test

DB_NAME=drupal
DB_USER=drupal
DB_PASSWORD=drupal
DB_ROOT_PASSWORD=password
DB_HOST=mariadb
DB_PORT=3306
DB_DRIVER=mysql

### --- MARIADB ----

MARIADB_TAG=10.4-3.8.1
#MARIADB_TAG=10.3-3.8.1
#MARIADB_TAG=10.2-3.8.1
#MARIADB_TAG=10.1-3.8.1

### --- VANILLA DRUPAL ----

DRUPAL_TAG=8-4.17.7
#DRUPAL_TAG=7-4.17.7

### --- PHP ----

# Linux (uid 1000 gid 1000)

PHP_TAG=7.3-dev-4.15.3
#PHP_TAG=7.2-dev-4.15.3
#PHP_TAG=7.4-dev-4.15.3

# macOS (uid 501 gid 20)

#PHP_TAG=7.3-dev-macos-4.15.3
#PHP_TAG=7.2-dev-macos-4.15.3
#PHP_TAG=7.4-dev-macos-4.15.3

### --- NGINX ----

NGINX_TAG=1.17-5.8.15
#NGINX_TAG=1.16-5.8.15

NGINX_VHOST_PRESET=drupal8
#NGINX_VHOST_PRESET=drupal7
#NGINX_VHOST_PRESET=drupal6

### --- SOLR ---

SOLR_CONFIG_SET="search_api_solr_8.x-3.2"
#SOLR_CONFIG_SET="search_api_solr_8.x-2.7"
#SOLR_CONFIG_SET="search_api_solr_8.x-1.2"
#SOLR_CONFIG_SET="search_api_solr_7.x-1.14"

SOLR_TAG=8-4.5.0
#SOLR_TAG=7-4.5.0
#SOLR_TAG=6-4.5.0
#SOLR_TAG=5-4.5.0

### --- ELASTICSEARCH ---

ELASTICSEARCH_TAG=7-5.4.2
#ELASTICSEARCH_TAG=6-5.4.2

### --- KIBANA ---

KIBANA_TAG=7-5.4.2
#KIBANA_TAG=6-5.4.2

### --- REDIS ---

REDIS_TAG=4-3.2.4
#REDIS_TAG=5-3.2.4

### --- NODE ---

NODE_TAG=12-dev-0.33.2
#NODE_TAG=10-dev-0.33.2
#NODE_TAG=8-dev-0.33.2

### --- VARNISH ---

VARNISH_TAG=6.0-4.4.5
#VARNISH_TAG=4.1-4.4.5

### --- POSTGRESQL ----

POSTGRES_TAG=12-1.9.2
#POSTGRES_TAG=11-1.9.2
#POSTGRES_TAG=10-1.9.2
#POSTGRES_TAG=9.6-1.9.2
#POSTGRES_TAG=9.5-1.9.2
#POSTGRES_TAG=9.4-1.9.2

### OTHERS

ADMINER_TAG=4-3.9.7
APACHE_TAG=2.4-4.2.6
ATHENAPDF_TAG=2.10.0
DRUPAL_NODE_TAG=1.0-2.0.0
MEMCACHED_TAG=1-2.5.4
OPENSMTPD_TAG=6.0-1.6.4
RSYSLOG_TAG=latest
SELENIUM_CHROME_TAG=3.141
WEBGRIND_TAG=1-1.15.1
XHPROF_TAG=2.1.6

Logs output docker-compose logs

Attaching to drupal8_nginx, drupal8_traefik, drupal8_mariadb, drupal8_mailhog, drupal8_portainer, drupal8_pma, drupal8_php
mailhog_1    | 2020/05/22 15:16:35 Using in-memory storage
mailhog_1    | [HTTP] Binding to address: 0.0.0.0:8025
mailhog_1    | Creating API v1 with WebPath: 
mailhog_1    | 2020/05/22 15:16:35 [SMTP] Binding to address: 0.0.0.0:1025
mailhog_1    | 2020/05/22 15:16:35 Serving under http://0.0.0.0:8025/
mailhog_1    | Creating API v2 with WebPath: 
mailhog_1    | [APIv1] KEEPALIVE /api/v1/events
mailhog_1    | [APIv1] KEEPALIVE /api/v1/events
mailhog_1    | [APIv1] KEEPALIVE /api/v1/events
mailhog_1    | [APIv1] KEEPALIVE /api/v1/events
mailhog_1    | [APIv1] KEEPALIVE /api/v1/events
mailhog_1    | [APIv1] KEEPALIVE /api/v1/events
mailhog_1    | [APIv1] KEEPALIVE /api/v1/events
mailhog_1    | [APIv1] KEEPALIVE /api/v1/events
mailhog_1    | [APIv1] KEEPALIVE /api/v1/events
mailhog_1    | [APIv1] KEEPALIVE /api/v1/events
mailhog_1    | [APIv1] KEEPALIVE /api/v1/events
mailhog_1    | [APIv1] KEEPALIVE /api/v1/events
mailhog_1    | [APIv1] KEEPALIVE /api/v1/events
mailhog_1    | [APIv1] KEEPALIVE /api/v1/events
mailhog_1    | [APIv1] KEEPALIVE /api/v1/events
mailhog_1    | [APIv1] KEEPALIVE /api/v1/events
mailhog_1    | [APIv1] KEEPALIVE /api/v1/events
mailhog_1    | [APIv1] KEEPALIVE /api/v1/events
mailhog_1    | [APIv1] KEEPALIVE /api/v1/events
mailhog_1    | [APIv1] KEEPALIVE /api/v1/events
mailhog_1    | [APIv1] KEEPALIVE /api/v1/events
mariadb_1    | Initializing database
mariadb_1    | 
mariadb_1    | 
mariadb_1    | PLEASE REMEMBER TO SET A PASSWORD FOR THE MariaDB root USER !
mariadb_1    | To do so, start the server, then issue the following commands:
mariadb_1    | 
mariadb_1    | '/usr/bin/mysqladmin' -u root password 'new-password'
mariadb_1    | '/usr/bin/mysqladmin' -u root -h  password 'new-password'
mariadb_1    | 
mariadb_1    | Alternatively you can run:
mariadb_1    | '/usr/bin/mysql_secure_installation'
mariadb_1    | 
mariadb_1    | which will also give you the option of removing the test
mariadb_1    | databases and anonymous user created by default.  This is
mariadb_1    | strongly recommended for production servers.
mariadb_1    | 
mariadb_1    | See the MariaDB Knowledgebase at http://mariadb.com/kb or the
mariadb_1    | MySQL manual for more instructions.
mariadb_1    | 
mariadb_1    | Please report any problems at http://mariadb.org/jira
mariadb_1    | 
mariadb_1    | The latest information about MariaDB is available at http://mariadb.org/.
mariadb_1    | You can find additional information about the MySQL part at:
mariadb_1    | http://dev.mysql.com
mariadb_1    | Consider joining MariaDB's strong and vibrant community:
mariadb_1    | https://mariadb.org/get-involved/
mariadb_1    | 
mariadb_1    | Database initialized
mariadb_1    | MySQL init process in progress...
mariadb_1    | 2020-05-22 15:16:41 0 [Note] mysqld (mysqld 10.4.12-MariaDB) starting as process 103 ...
mariadb_1    | 2020-05-22 15:16:41 0 [Note] InnoDB: Using Linux native AIO
mariadb_1    | 2020-05-22 15:16:41 0 [Note] InnoDB: Mutexes and rw_locks use GCC atomic builtins
mariadb_1    | 2020-05-22 15:16:41 0 [Note] InnoDB: Uses event mutexes
mariadb_1    | 2020-05-22 15:16:41 0 [Note] InnoDB: Compressed tables use zlib 1.2.11
mariadb_1    | 2020-05-22 15:16:41 0 [Note] InnoDB: Number of pools: 1
mariadb_1    | 2020-05-22 15:16:41 0 [Note] InnoDB: Using SSE2 crc32 instructions
mariadb_1    | 2020-05-22 15:16:41 0 [Note] mysqld: O_TMPFILE is not supported on /tmp (disabling future attempts)
mariadb_1    | 2020-05-22 15:16:41 0 [Note] InnoDB: Initializing buffer pool, total size = 128M, instances = 1, chunk size = 128M
mariadb_1    | 2020-05-22 15:16:41 0 [Note] InnoDB: Completed initialization of buffer pool
mariadb_1    | 2020-05-22 15:16:41 0 [Note] InnoDB: If the mysqld execution user is authorized, page cleaner thread priority can be changed. See the man page of setpriority().
mariadb_1    | 2020-05-22 15:16:41 0 [Note] InnoDB: 128 out of 128 rollback segments are active.
mariadb_1    | 2020-05-22 15:16:41 0 [Note] InnoDB: Creating shared tablespace for temporary tables
mariadb_1    | 2020-05-22 15:16:41 0 [Note] InnoDB: Setting file './ibtmp1' size to 12 MB. Physically writing the file full; Please wait ...
mariadb_1    | 2020-05-22 15:16:41 0 [Note] InnoDB: File './ibtmp1' size is now 12 MB.
mariadb_1    | 2020-05-22 15:16:41 0 [Note] InnoDB: Waiting for purge to start
mariadb_1    | 2020-05-22 15:16:41 0 [Note] InnoDB: 10.4.12 started; log sequence number 60979; transaction id 21
mariadb_1    | 2020-05-22 15:16:41 0 [Note] InnoDB: Loading buffer pool(s) from /var/lib/mysql/ib_buffer_pool
mariadb_1    | 2020-05-22 15:16:41 0 [Note] Plugin 'FEEDBACK' is disabled.
mariadb_1    | 2020-05-22 15:16:41 0 [Warning] 'user' entry 'root@9e1d5ff79c8f' ignored in --skip-name-resolve mode.
mariadb_1    | 2020-05-22 15:16:41 0 [Warning] 'user' entry '@9e1d5ff79c8f' ignored in --skip-name-resolve mode.
mariadb_1    | 2020-05-22 15:16:41 0 [Warning] 'proxies_priv' entry '@% root@9e1d5ff79c8f' ignored in --skip-name-resolve mode.
mariadb_1    | 2020-05-22 15:16:41 0 [Note] InnoDB: Buffer pool(s) load completed at 200522 15:16:41
mariadb_1    | 2020-05-22 15:16:41 0 [Note] Reading of all Master_info entries succeeded
mariadb_1    | 2020-05-22 15:16:41 0 [Note] Added new Master_info '' to hash table
mariadb_1    | 2020-05-22 15:16:41 0 [Note] mysqld: ready for connections.
mariadb_1    | Version: '10.4.12-MariaDB'  socket: '/var/run/mysqld/mysqld.sock'  port: 0  MariaDB Server
mariadb_1    | 2020-05-22 15:17:08 10 [Warning] 'proxies_priv' entry '@% root@9e1d5ff79c8f' ignored in --skip-name-resolve mode.
mariadb_1    | 
mariadb_1    | /usr/local/bin/init_mariadb: running /docker-entrypoint-initdb.d/backup-2020-05-22T17-02-18.sql.gz
mariadb_1    | 
mariadb_1    | 
mariadb_1    | 2020-05-22 15:17:58 0 [Note] mysqld (initiated by: unknown): Normal shutdown
mariadb_1    | 2020-05-22 15:17:58 0 [Note] Event Scheduler: Purging the queue. 0 events
mariadb_1    | 2020-05-22 15:17:58 0 [Note] InnoDB: FTS optimize thread exiting.
mariadb_1    | 2020-05-22 15:17:59 0 [Note] InnoDB: Starting shutdown...
mariadb_1    | 2020-05-22 15:17:59 0 [Note] InnoDB: Dumping buffer pool(s) to /var/lib/mysql/ib_buffer_pool
mariadb_1    | 2020-05-22 15:17:59 0 [Note] InnoDB: Instance 0, restricted to 2003 pages due to innodb_buf_pool_dump_pct=25
mariadb_1    | 2020-05-22 15:17:59 0 [Note] InnoDB: Buffer pool(s) dump completed at 200522 15:17:59
mariadb_1    | 2020-05-22 15:18:01 0 [Note] InnoDB: Shutdown completed; log sequence number 156405330; transaction id 3333
mariadb_1    | 2020-05-22 15:18:01 0 [Note] InnoDB: Removed temporary tablespace data file: "ibtmp1"
mariadb_1    | 2020-05-22 15:18:01 0 [Note] mysqld: Shutdown complete
mariadb_1    | 
nginx_1      | 2020/05/22 15:16:38 [notice] 1#1: using the "epoll" event method
nginx_1      | 2020/05/22 15:16:38 [notice] 1#1: nginx/1.17.10
nginx_1      | 2020/05/22 15:16:38 [notice] 1#1: built by gcc 6.4.0 (Alpine 6.4.0) 
nginx_1      | 2020/05/22 15:16:38 [notice] 1#1: OS: Linux 4.19.76-linuxkit
nginx_1      | 2020/05/22 15:16:38 [notice] 1#1: getrlimit(RLIMIT_NOFILE): 1048576:1048576
nginx_1      | 2020/05/22 15:16:38 [notice] 1#1: start worker processes
nginx_1      | 2020/05/22 15:16:38 [notice] 1#1: start worker process 39
nginx_1      | 2020/05/22 15:16:38 [notice] 1#1: start worker process 40
nginx_1      | 2020/05/22 15:19:13 [error] 40#40: *1 FastCGI sent in stderr: "PHP message: AssertionError: $attributes, if set, must be an array or object of type \Drupal\Core\Template\Attribute in /var/www/html/core/lib/Drupal/Core/Template/TwigExtension.php on line 285 #0 /var/www/html/core/lib/Drupal/Core/Template/TwigExtension.php(285): assert(false, '$attributes, if...')
nginx_1      | #1 /var/www/html/vendor/twig/twig/src/Environment.php(497) : eval()'d code(151): Drupal\Core\Template\TwigExtension->getLink('Gewerbliche Imm...', Object(Drupal\Core\Url), NULL)
nginx_1      | #2 /var/www/html/vendor/twig/twig/src/Template.php(704): __TwigTemplate_adf75e65f08ba896af4945f239f956f6841c55b36ce01504caba8cf1ed9824f7->getmenu_links(Array, Object(Drupal\Core\Template\Attribute), 1, Array, Array)
nginx_1      | #3 /var/www/html/vendor/twig/twig/src/Environment.php(497) : eval()'d code(175): Twig\Template->getAttribute(Object(__TwigTemplate_adf75e65f08ba896af4945f239f956f6841c55b36ce01504caba8cf1ed9824f7), 'menu_links', Array, 'method')
nginx_1      | #4 /var/www/html/vendor/twig/twig/src/Template.php(704): __TwigTemplate_adf75e65f08ba896af4945f239f956f6841c55b36ce01504caba8cf1ed9824f7->getmenu_links(Array, Object(Drupal\Core\Template\Attribute), 0, Array, Array)
nginx_1      | #5 /var/www/html/vendor/twig/twig/src/Environment.php(497) : eval()'d code(58): Twig\Template->getAttribute(Object(__TwigTemplate_adf75e65f08ba896af4945f239f956f6841c55b36ce01504caba8cf1ed9824f7), 'menu_links', Array, 'method')
nginx_1      | #6 /var/www/html/vendor/twig/twig/src/Template.php(455): __TwigTemplate_adf75e65f08ba896af4945f239f956f6841c55b36ce01504caba8cf1ed9824f7->doDisplay(Array, Array)
nginx_1      | #7 /var/www/html/vendor/twig/twig/src/Template.php(422): Twig\Template->displayWithErrorHandling(Array, Array)
nginx_1      | #8 /var/www/html/vendor/twig/twig/src/Template.php(434): Twig\Template->display(Array)
nginx_1      | #9 /var/www/html/core/themes/engines/twig/twig.engine(64): Twig\Template->render(Array)
nginx_1      | #10 /var/www/html/core/lib/Drupal/Core/Theme/ThemeManager.php(384): twig_render_template('profiles/crusoe...', Array)
nginx_1      | #11 /var/www/html/core/lib/Drupal/Core/Render/Rend
nginx_1      | 2020/05/22 15:19:13 [error] 40#40: *1 upstream prematurely closed FastCGI stdout while reading response header from upstream, client: 172.20.0.6, server: default, request: "GET /de/gewerbliche-kunden/gewerbliche-immobilienfinanzierung HTTP/1.1", upstream: "fastcgi://172.20.0.7:9000", host: "drupal8.test", referrer: "http://drupal8.test/de"
nginx_1      | 172.20.0.6 - - [22/May/2020:15:19:13 +0000] "GET /de/gewerbliche-kunden/gewerbliche-immobilienfinanzierung HTTP/1.1" 502 150 "http://drupal8.test/de" "Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:76.0) Gecko/20100101 Firefox/76.0"
nginx_1      | 172.20.0.6 - - [22/May/2020:15:19:15 +0000] "GET /de HTTP/1.1" 200 28317 "http://drupal8.test/de/admin/reports/dblog" "Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:76.0) Gecko/20100101 Firefox/76.0"
nginx_1      | 172.20.0.6 - - [22/May/2020:15:19:15 +0000] "GET /de/admin/reports/dblog HTTP/1.1" 403 16703 "http://drupal8.test/de/pass1/1" "Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:76.0) Gecko/20100101 Firefox/76.0"
nginx_1      | 2020/05/22 15:19:16 [error] 40#40: *5 open() "/var/www/html/sites/default/files/languages/de_5dMNsIHXl4MUxVCCRiqr9G-fCryc5IMEkZPGJOAhk3Q.js" failed (2: No such file or directory), client: 172.20.0.6, server: default, request: "GET /sites/default/files/languages/de_5dMNsIHXl4MUxVCCRiqr9G-fCryc5IMEkZPGJOAhk3Q.js?qadoan HTTP/1.1", host: "drupal8.test", referrer: "http://drupal8.test/de"
nginx_1      | 2020/05/22 15:19:16 [info] 40#40: *5 client 172.20.0.6 closed keepalive connection
nginx_1      | 2020/05/22 15:19:16 [info] 39#39: *8 sendfile() failed (32: Broken pipe) while sending response to client, client: 172.20.0.6, server: default, request: "GET /sites/default/files/boximg/2019-05/Treasury_380x165px_0.jpg HTTP/1.1", host: "drupal8.test", referrer: "http://drupal8.test/de"
nginx_1      | 2020/05/22 15:19:16 [info] 40#40: *13 client closed connection while waiting for request, client: 172.20.0.6, server: 0.0.0.0:80
nginx_1      | 2020/05/22 15:19:16 [info] 39#39: *9 sendfile() failed (32: Broken pipe) while sending response to client, client: 172.20.0.6, server: default, request: "GET /sites/default/files/styles/article_teaser/public/2019-10/GIF_0.jpg?h=537c38d9&itok=Z-VxI3WT HTTP/1.1", host: "drupal8.test", referrer: "http://drupal8.test/de"
nginx_1      | 2020/05/22 15:19:16 [info] 40#40: *15 client closed connection while waiting for request, client: 172.20.0.6, server: 0.0.0.0:80
nginx_1      | 2020/05/22 15:19:16 [info] 40#40: *17 client closed connection while waiting for request, client: 172.20.0.6, server: 0.0.0.0:80
nginx_1      | 2020/05/22 15:19:16 [info] 40#40: *19 client closed connection while waiting for request, client: 172.20.0.6, server: 0.0.0.0:80
nginx_1      | 2020/05/22 15:19:16 [info] 40#40: *20 client closed connection while waiting for request, client: 172.20.0.6, server: 0.0.0.0:80
nginx_1      | 2020/05/22 15:19:16 [info] 40#40: *22 client closed connection while waiting for request, client: 172.20.0.6, server: 0.0.0.0:80
nginx_1      | 2020/05/22 15:19:16 [info] 40#40: *21 client closed connection while waiting for request, client: 172.20.0.6, server: 0.0.0.0:80
nginx_1      | 2020/05/22 15:19:16 [info] 39#39: *10 sendfile() failed (32: Broken pipe) while sending response to client, client: 172.20.0.6, server: default, request: "GET /sites/default/files/boximg/2019-05/Allgemeine_Baufi_380x165px.jpg HTTP/1.1", host: "drupal8.test", referrer: "http://drupal8.test/de"
nginx_1      | 2020/05/22 15:19:16 [info] 39#39: *11 sendfile() failed (32: Broken pipe) while sending response to client, client: 172.20.0.6, server: default, request: "GET /sites/default/files/boximg/2019-05/GIF_380x165px.jpg HTTP/1.1", host: "drupal8.test", referrer: "http://drupal8.test/de"
nginx_1      | 2020/05/22 15:19:16 [info] 40#40: *16 client 172.20.0.6 closed keepalive connection
nginx_1      | 2020/05/22 15:19:16 [info] 40#40: *14 client 172.20.0.6 closed keepalive connection
nginx_1      | 172.20.0.6 - - [22/May/2020:15:19:17 +0000] "GET /sites/default/files/styles/article_teaser/public/2020-03/Bild_Personal_1200x375px.jpg?h=aea0324d&itok=mD9gHttN HTTP/1.1" 404 90 "http://drupal8.test/de" "Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:76.0) Gecko/20100101 Firefox/76.0"
nginx_1      | 172.20.0.6 - - [22/May/2020:15:19:17 +0000] "GET /sites/default/files/styles/article_teaser/public/2020-04/Bild_Corona_VRBP_Home.jpg?h=be4f8183&itok=zR3j3Muh HTTP/1.1" 404 90 "http://drupal8.test/de" "Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:76.0) Gecko/20100101 Firefox/76.0"
nginx_1      | 2020/05/22 15:19:17 [error] 39#39: *25 open() "/var/www/html/sites/default/files/languages/de_5dMNsIHXl4MUxVCCRiqr9G-fCryc5IMEkZPGJOAhk3Q.js" failed (2: No such file or directory), client: 172.20.0.6, server: default, request: "GET /sites/default/files/languages/de_5dMNsIHXl4MUxVCCRiqr9G-fCryc5IMEkZPGJOAhk3Q.js?qadoan HTTP/1.1", host: "drupal8.test", referrer: "http://drupal8.test/de/admin/reports/dblog"
nginx_1      | 2020/05/22 15:19:18 [error] 39#39: *24 open() "/var/www/html/sites/default/files/languages/de_5dMNsIHXl4MUxVCCRiqr9G-fCryc5IMEkZPGJOAhk3Q.js" failed (2: No such file or directory), client: 172.20.0.6, server: default, request: "GET /sites/default/files/languages/de_5dMNsIHXl4MUxVCCRiqr9G-fCryc5IMEkZPGJOAhk3Q.js?qadoan HTTP/1.1", host: "drupal8.test", referrer: "http://drupal8.test/de"
nginx_1      | 172.20.0.6 - - [22/May/2020:15:19:18 +0000] "GET /sites/default/files/styles/article_teaser/public/2020-03/Bild_Personal_1200x375px.jpg?h=aea0324d&itok=mD9gHttN HTTP/1.1" 404 90 "http://drupal8.test/de" "Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:76.0) Gecko/20100101 Firefox/76.0"
php_1        | sudo: setrlimit(RLIMIT_CORE): Operation not permitted
php_1        | sudo: setrlimit(RLIMIT_CORE): Operation not permitted
php_1        | [22-May-2020 15:16:37] NOTICE: fpm is running, pid 1
php_1        | [22-May-2020 15:16:37] NOTICE: ready to handle connections
php_1        | NOTICE: PHP message: AssertionError: $attributes, if set, must be an array or object of type \Drupal\Core\Template\Attribute in /var/www/html/core/lib/Drupal/Core/Template/TwigExtension.php on line 285 #0 /var/www/html/core/lib/Drupal/Core/Template/TwigExtension.php(285): assert(false, '$attributes, if...')
php_1        | #1 /var/www/html/vendor/twig/twig/src/Environment.php(497) : eval()'d code(151): Drupal\Core\Template\TwigExtension->getLink('Gewerbliche Imm...', Object(Drupal\Core\Url), NULL)
php_1        | #2 /var/www/html/vendor/twig/twig/src/Template.php(704): __TwigTemplate_adf75e65f08ba896af4945f239f956f6841c55b36ce01504caba8cf1ed9824f7->getmenu_links(Array, Object(Drupal\Core\Template\Attribute), 1, Array, Array)
php_1        | #3 /var/www/html/vendor/twig/twig/src/Environment.php(497) : eval()'d code(175): Twig\Template->getAttribute(Object(__TwigTemplate_adf75e65f08ba896af4945f239f956f6841c55b36ce01504caba8cf1ed9824f7), 'menu_links', Array, 'method')
php_1        | #4 /var/www/html/vendor/twig/twig/src/Template.php(704): __TwigTemplate_adf75e65f08ba896af4945f239f956f6841c55b36ce01504caba8cf1ed9824f7->getmenu_links(Array, Object(Drupal\Core\Template\Attribute), 0, Array, Array)
php_1        | #5 /var/www/html/vendor/twig/twig/src/Environment.php(497) : eval()'d code(58): Twig\Template->getAttribute(Object(__TwigTemplate_adf75e65f08ba896af4945f239f956f6841c55b36ce01504caba8cf1ed9824f7), 'menu_links', Array, 'method')
php_1        | #6 /var/www/html/vendor/twig/twig/src/Template.php(455): __TwigTemplate_adf75e65f08ba896af4945f239f956f6841c55b36ce01504caba8cf1ed9824f7->doDisplay(Array, Array)
php_1        | #7 /var/www/html/vendor/twig/twig/src/Template.php(422): Twig\Template->displayWithErrorHandling(Array, Array)
php_1        | #8 /var/www/html/vendor/twig/twig/src/Template.php(434): Twig\Template->display(Array)
php_1        | #9 /var/www/html/core/themes/engines/twig/twig.engine(64): Twig\Template->render(Array)
php_1        | #10 /var/www/html/core/lib/Drupal/Core/Theme/ThemeManager.php(384): twig_render_template('profiles/crusoe...', Array)
php_1        | #11 /var/www/html/core/lib/Drupal/Core/Render/Renderer.php(431): Drupal\Core\Theme\ThemeManager->render('menu', Array)
php_1        | #12 /var/www/html/core/lib/Drupal/Core/Render/Renderer.php(200): Drupal\Core\Render\Renderer->doRender(Array, false)
php_1        | #13 /var/www/html/core/lib/Drupal/Core/Template/TwigExtension.php(501): Drupal\Core\Render\Renderer->render(Array)
php_1        | #14 /var/www/html/vendor/twig/twig/src/Environment.php(497) : eval()'d code(102): Drupal\Core\Template\TwigExtension->escapeFilter(Object(Drupal\Core\Template\TwigEnvironment), Array, 'html', NULL, true)
php_1        | #15 /var/www/html/vendor/twig/twig/src/Template.php(216): __TwigTemplate_0b7870f6fa3f539f02fd6cef2982bbdf02f67812456702c5ecec82a3dfb9fd5a->block_content(Array, Array)
php_1        | #16 /var/www/html/vendor/twig/twig/src/Environment.php(497) : eval()'d code(91): Twig\Template->displayBlock('content', Array, Array)
php_1        | #17 /var/www/html/vendor/twig/twig/src/Template.php(455): __TwigTemplate_0b7870f6fa3f539f02fd6cef2982bbdf02f67812456702c5ecec82a3dfb9fd5a->doDisplay(Array, Array)
php_1        | #18 /var/www/html/vendor/twig/twig/src/Template.php(422): Twig\Template->displayWithErrorHandling(Array, Array)
php_1        | #19 /var/www/html/vendor/twig/twig/src/Template.php(434): Twig\Template->display(Array)
php_1        | #20 /var/www/html/core/themes/engines/twig/twig.engine(64): Twig\Template->render(Array)
php_1        | #21 /var/www/html/core/lib/Drupal/Core/Theme/ThemeManager.php(384): twig_render_template('core/modules/sy...', Array)
php_1        | #22 /var/www/html/core/lib/Drupal/Core/Render/Renderer.php(431): Drupal\Core\Theme\ThemeManager->render('block', Array)
php_1        | #23 /var/www/html/core/lib/Drupal/Core/Render/Renderer.php(444): Drupal\Core\Render\Renderer->doRender(Array)
php_1        | #24 /var/www/html/core/lib/Drupal/Core/Render/Renderer.php(200): Drupal\Core\Render\Renderer->doRender(Array, false)
php_1        | #25 /var/www/html/core/lib/Drupal/Core/Template/TwigExtension.php(501): Drupal\Core\Render\Renderer->render(Array)
php_1        | #26 /var/www/html/vendor/twig/twig/src/Environment.php(497) : eval()'d code(436): Drupal\Core\Template\TwigExtension->escapeFilter(Object(Drupal\Core\Template\TwigEnvironment), Array, 'html', NULL, true)
php_1        | #27 /var/www/html/vendor/twig/twig/src/Template.php(216): __TwigTemplate_62a0a4db5c8a3bfc436830732eaf3fe81aed379e28bd1110fdd5402ac9fd8611->block_footer_nav_col1(Array, Array)
php_1        | #28 /var/www/html/vendor/twig/twig/src/Environment.php(497) : eval()'d code(118): Twig\Template->displayBlock('footer_nav_col1', Array, Array)
php_1        | #29 /var/www/html/vendor/twig/twig/src/Template.php(455): __TwigTemplate_62a0a4db5c8a3bfc436830732eaf3fe81aed379e28bd1110fdd5402ac9fd8611->doDisplay(Array, Array)
nginx_1      | 172.20.0.6 - - [22/May/2020:15:19:18 +0000] "GET /sites/default/files/styles/article_teaser/public/2020-04/Bild_Corona_VRBP_Home.jpg?h=be4f8183&itok=zR3j3Muh HTTP/1.1" 404 90 "http://drupal8.test/de" "Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:76.0) Gecko/20100101 Firefox/76.0"
nginx_1      | 2020/05/22 15:19:18 [error] 40#40: *18 open() "/var/www/html/sites/default/files/languages/de_5dMNsIHXl4MUxVCCRiqr9G-fCryc5IMEkZPGJOAhk3Q.js" failed (2: No such file or directory), client: 172.20.0.6, server: default, request: "GET /sites/default/files/languages/de_5dMNsIHXl4MUxVCCRiqr9G-fCryc5IMEkZPGJOAhk3Q.js?qadoan HTTP/1.1", host: "drupal8.test", referrer: "http://drupal8.test/de/admin/reports/dblog"
nginx_1      | 2020/05/22 15:19:18 [error] 40#40: *18 open() "/var/www/html/sites/default/files/header/2020-04/20200428_Webseite-Banner_DE_1200x375[2].png" failed (2: No such file or directory), client: 172.20.0.6, server: default, request: "GET /sites/default/files/header/2020-04/20200428_Webseite-Banner_DE_1200x375%5B2%5D.png HTTP/1.1", host: "drupal8.test", referrer: "http://drupal8.test/de"
nginx_1      | 2020/05/22 15:19:18 [error] 40#40: *3 open() "/var/www/html/sites/default/files/header/2020-04/Home_Gruenes_Darlehen_1200x375.jpg" failed (2: No such file or directory), client: 172.20.0.6, server: default, request: "GET /sites/default/files/header/2020-04/Home_Gruenes_Darlehen_1200x375.jpg HTTP/1.1", host: "drupal8.test", referrer: "http://drupal8.test/de"
nginx_1      | 2020/05/22 15:19:19 [error] 39#39: *25 open() "/var/www/html/sites/default/files/header/2020-04/20200428_Webseite-Banner_DE_1200x375[2].png" failed (2: No such file or directory), client: 172.20.0.6, server: default, request: "GET /sites/default/files/header/2020-04/20200428_Webseite-Banner_DE_1200x375%5B2%5D.png HTTP/1.1", host: "drupal8.test", referrer: "http://drupal8.test/de"
nginx_1      | 2020/05/22 15:19:19 [error] 39#39: *24 open() "/var/www/html/sites/default/files/header/2020-04/Home_Gruenes_Darlehen_1200x375.jpg" failed (2: No such file or directory), client: 172.20.0.6, server: default, request: "GET /sites/default/files/header/2020-04/Home_Gruenes_Darlehen_1200x375.jpg HTTP/1.1", host: "drupal8.test", referrer: "http://drupal8.test/de"
nginx_1      | 172.20.0.6 - - [22/May/2020:15:19:24 +0000] "GET /pass1 HTTP/1.1" 302 376 "-" "Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:76.0) Gecko/20100101 Firefox/76.0"
nginx_1      | 172.20.0.6 - - [22/May/2020:15:19:26 +0000] "GET /de/pass1/login HTTP/1.1" 200 16977 "-" "Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:76.0) Gecko/20100101 Firefox/76.0"
nginx_1      | 2020/05/22 15:19:26 [error] 39#39: *24 open() "/var/www/html/sites/default/files/languages/de_5dMNsIHXl4MUxVCCRiqr9G-fCryc5IMEkZPGJOAhk3Q.js" failed (2: No such file or directory), client: 172.20.0.6, server: default, request: "GET /sites/default/files/languages/de_5dMNsIHXl4MUxVCCRiqr9G-fCryc5IMEkZPGJOAhk3Q.js?qadoan HTTP/1.1", host: "drupal8.test", referrer: "http://drupal8.test/de/pass1/login"
nginx_1      | 2020/05/22 15:19:27 [info] 39#39: *24 client 172.20.0.6 closed keepalive connection
nginx_1      | 2020/05/22 15:19:27 [error] 39#39: *25 open() "/var/www/html/sites/default/files/languages/de_5dMNsIHXl4MUxVCCRiqr9G-fCryc5IMEkZPGJOAhk3Q.js" failed (2: No such file or directory), client: 172.20.0.6, server: default, request: "GET /sites/default/files/languages/de_5dMNsIHXl4MUxVCCRiqr9G-fCryc5IMEkZPGJOAhk3Q.js?qadoan HTTP/1.1", host: "drupal8.test", referrer: "http://drupal8.test/de/pass1/login"
nginx_1      | 172.20.0.6 - - [22/May/2020:15:19:40 +0000] "POST /de/pass1/login HTTP/1.1" 303 360 "http://drupal8.test/de/pass1/login" "Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:76.0) Gecko/20100101 Firefox/76.0"
nginx_1      | 172.20.0.6 - - [22/May/2020:15:19:41 +0000] "GET /de/pass1/1 HTTP/1.1" 200 37890 "http://drupal8.test/de/pass1/login" "Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:76.0) Gecko/20100101 Firefox/76.0"
nginx_1      | 2020/05/22 15:19:42 [info] 39#39: *32 client 172.20.0.6 closed keepalive connection
nginx_1      | 2020/05/22 15:19:42 [info] 39#39: *25 client 172.20.0.6 closed keepalive connection
nginx_1      | 2020/05/22 15:19:42 [info] 39#39: *23 client 172.20.0.6 closed keepalive connection
nginx_1      | 2020/05/22 15:19:42 [info] 39#39: *33 client closed connection while waiting for request, client: 172.20.0.6, server: 0.0.0.0:80
nginx_1      | 2020/05/22 15:19:42 [info] 40#40: *1 client 172.20.0.6 closed keepalive connection
nginx_1      | 2020/05/22 15:19:42 [info] 40#40: *18 client 172.20.0.6 closed keepalive connection
nginx_1      | 2020/05/22 15:19:42 [info] 40#40: *3 client 172.20.0.6 closed keepalive connection
nginx_1      | 2020/05/22 15:19:42 [error] 39#39: *35 open() "/var/www/html/sites/default/files/languages/de_5dMNsIHXl4MUxVCCRiqr9G-fCryc5IMEkZPGJOAhk3Q.js" failed (2: No such file or directory), client: 172.20.0.6, server: default, request: "GET /sites/default/files/languages/de_5dMNsIHXl4MUxVCCRiqr9G-fCryc5IMEkZPGJOAhk3Q.js?qadoan HTTP/1.1", host: "drupal8.test", referrer: "http://drupal8.test/de/pass1/1"
nginx_1      | 2020/05/22 15:19:42 [info] 39#39: *34 client 172.20.0.6 closed keepalive connection
nginx_1      | 2020/05/22 15:19:42 [error] 39#39: *35 open() "/var/www/html/sites/default/files/languages/de_5dMNsIHXl4MUxVCCRiqr9G-fCryc5IMEkZPGJOAhk3Q.js" failed (2: No such file or directory), client: 172.20.0.6, server: default, request: "GET /sites/default/files/languages/de_5dMNsIHXl4MUxVCCRiqr9G-fCryc5IMEkZPGJOAhk3Q.js?qadoan HTTP/1.1", host: "drupal8.test", referrer: "http://drupal8.test/de/pass1/1"
nginx_1      | 2020/05/22 15:19:43 [info] 39#39: *35 client 172.20.0.6 closed keepalive connection
nginx_1      | 172.20.0.6 - - [22/May/2020:15:19:45 +0000] "POST /de/contextual/render HTTP/1.1" 200 435 "http://drupal8.test/de/pass1/1" "Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:76.0) Gecko/20100101 Firefox/76.0"
nginx_1      | 172.20.0.6 - - [22/May/2020:15:19:45 +0000] "POST /de/contextual/render HTTP/1.1" 200 431 "http://drupal8.test/de/pass1/1" "Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:76.0) Gecko/20100101 Firefox/76.0"
nginx_1      | 172.20.0.6 - - [22/May/2020:15:19:45 +0000] "POST /de/contextual/render HTTP/1.1" 200 1117 "http://drupal8.test/de/pass1/1" "Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:76.0) Gecko/20100101 Firefox/76.0"
nginx_1      | 172.20.0.6 - - [22/May/2020:15:19:45 +0000] "POST /de/contextual/render HTTP/1.1" 200 523 "http://drupal8.test/de/pass1/1" "Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:76.0) Gecko/20100101 Firefox/76.0"
nginx_1      | 172.20.0.6 - - [22/May/2020:15:19:46 +0000] "POST /de/quickedit/attachments?_wrapper_format=drupal_ajax HTTP/1.1" 200 627 "http://drupal8.test/de/pass1/1" "Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:76.0) Gecko/20100101 Firefox/76.0"
nginx_1      | 172.20.0.6 - - [22/May/2020:15:19:46 +0000] "POST /de/quickedit/attachments?_wrapper_format=drupal_ajax HTTP/1.1" 200 2203 "http://drupal8.test/de/pass1/1" "Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:76.0) Gecko/20100101 Firefox/76.0"
nginx_1      | 2020/05/22 15:27:31 [error] 40#40: *46 FastCGI sent in stderr: "PHP message: AssertionError: $attributes, if set, must be an array or object of type \Drupal\Core\Template\Attribute in /var/www/html/core/lib/Drupal/Core/Template/TwigExtension.php on line 285 #0 /var/www/html/core/lib/Drupal/Core/Template/TwigExtension.php(285): assert(false, '$attributes, if...')
nginx_1      | #1 /var/www/html/vendor/twig/twig/src/Environment.php(497) : eval()'d code(151): Drupal\Core\Template\TwigExtension->getLink('Gewerbliche Imm...', Object(Drupal\Core\Url), NULL)
nginx_1      | #2 /var/www/html/vendor/twig/twig/src/Template.php(704): __TwigTemplate_adf75e65f08ba896af4945f239f956f6841c55b36ce01504caba8cf1ed9824f7->getmenu_links(Array, Object(Drupal\Core\Template\Attribute), 1, Array, Array)
nginx_1      | #3 /var/www/html/vendor/twig/twig/src/Environment.php(497) : eval()'d code(175): Twig\Template->getAttribute(Object(__TwigTemplate_adf75e65f08ba896af4945f239f956f6841c55b36ce01504caba8cf1ed9824f7), 'menu_links', Array, 'method')
nginx_1      | #4 /var/www/html/vendor/twig/twig/src/Template.php(704): __TwigTemplate_adf75e65f08ba896af4945f239f956f6841c55b36ce01504caba8cf1ed9824f7->getmenu_links(Array, Object(Drupal\Core\Template\Attribute), 0, Array, Array)
mariadb_1    | 
mariadb_1    | MySQL init process done. Ready for start up.
mariadb_1    | 
mariadb_1    | 2020-05-22 15:18:01 0 [Note] mysqld (mysqld 10.4.12-MariaDB) starting as process 1 ...
mariadb_1    | 2020-05-22 15:18:01 0 [Note] InnoDB: Using Linux native AIO
mariadb_1    | 2020-05-22 15:18:01 0 [Note] InnoDB: Mutexes and rw_locks use GCC atomic builtins
mariadb_1    | 2020-05-22 15:18:01 0 [Note] InnoDB: Uses event mutexes
mariadb_1    | 2020-05-22 15:18:01 0 [Note] InnoDB: Compressed tables use zlib 1.2.11
mariadb_1    | 2020-05-22 15:18:01 0 [Note] InnoDB: Number of pools: 1
mariadb_1    | 2020-05-22 15:18:01 0 [Note] InnoDB: Using SSE2 crc32 instructions
mariadb_1    | 2020-05-22 15:18:01 0 [Note] mysqld: O_TMPFILE is not supported on /tmp (disabling future attempts)
mariadb_1    | 2020-05-22 15:18:01 0 [Note] InnoDB: Initializing buffer pool, total size = 128M, instances = 1, chunk size = 128M
mariadb_1    | 2020-05-22 15:18:01 0 [Note] InnoDB: Completed initialization of buffer pool
mariadb_1    | 2020-05-22 15:18:01 0 [Note] InnoDB: If the mysqld execution user is authorized, page cleaner thread priority can be changed. See the man page of setpriority().
mariadb_1    | 2020-05-22 15:18:01 0 [Note] InnoDB: 128 out of 128 rollback segments are active.
mariadb_1    | 2020-05-22 15:18:01 0 [Note] InnoDB: Creating shared tablespace for temporary tables
mariadb_1    | 2020-05-22 15:18:01 0 [Note] InnoDB: Setting file './ibtmp1' size to 12 MB. Physically writing the file full; Please wait ...
mariadb_1    | 2020-05-22 15:18:01 0 [Note] InnoDB: File './ibtmp1' size is now 12 MB.
mariadb_1    | 2020-05-22 15:18:01 0 [Note] InnoDB: Waiting for purge to start
mariadb_1    | 2020-05-22 15:18:01 0 [Note] InnoDB: 10.4.12 started; log sequence number 156405330; transaction id 3336
mariadb_1    | 2020-05-22 15:18:01 0 [Note] InnoDB: Loading buffer pool(s) from /var/lib/mysql/ib_buffer_pool
mariadb_1    | 2020-05-22 15:18:01 0 [Note] Plugin 'FEEDBACK' is disabled.
mariadb_1    | 2020-05-22 15:18:01 0 [Note] Server socket created on IP: '0.0.0.0'.
mariadb_1    | 2020-05-22 15:18:01 0 [Warning] 'proxies_priv' entry '@% root@9e1d5ff79c8f' ignored in --skip-name-resolve mode.
mariadb_1    | 2020-05-22 15:18:01 0 [Note] Reading of all Master_info entries succeeded
mariadb_1    | 2020-05-22 15:18:01 0 [Note] Added new Master_info '' to hash table
mariadb_1    | 2020-05-22 15:18:01 0 [Note] mysqld: ready for connections.
mariadb_1    | Version: '10.4.12-MariaDB'  socket: '/var/run/mysqld/mysqld.sock'  port: 3306  MariaDB Server
mariadb_1    | 2020-05-22 15:18:03 0 [Note] InnoDB: Buffer pool(s) load completed at 200522 15:18:03
php_1        | #30 /var/www/html/vendor/twig/twig/src/Template.php(422): Twig\Template->displayWithErrorHandling(Array, Array)
php_1        | #31 /var/www/html/vendor/twig/twig/src/Template.php(434): Twig\Template->display(Array)
php_1        | #32 /var/www/html/core/themes/engines/twig/twig.engine(64): Twig\Template->render(Array)
php_1        | #33 /var/www/html/core/lib/Drupal/Core/Theme/ThemeManager.php(384): twig_render_template('themes/crusoeth...', Array)
php_1        | #34 /var/www/html/core/lib/Drupal/Core/Render/Renderer.php(431): Drupal\Core\Theme\ThemeManager->render('page', Array)
php_1        | 172.20.0.8 -  22/May/2020:15:18:09 +0000 "GET /index.php" 500
php_1        | #35 /var/www/html/core/lib/Drupal/Core/Render/Renderer.php(200): Drupal\Core\Render\Renderer->doRender(Array, false)
php_1        | #36 /var/www/html/core/lib/Drupal/Core/Template/TwigExtension.php(501): Drupal\Core\Render\Renderer->render(Array)
php_1        | #37 /var/www/html/vendor/twig/twig/src/Environment.php(497) : eval()'d code(117): Drupal\Core\Template\TwigExtension->escapeFilter(Object(Drupal\Core\Template\TwigEnvironment), Array, 'html', NULL, true)
php_1        | #38 /var/www/html/vendor/twig/twig/src/Template.php(455): __TwigTemplate_2bb40c50b81cafb8c8f8d5b795c42d2a4989148fe1cc5ae7168260f650887a53->doDisplay(Array, Array)
php_1        | #39 /var/www/html/vendor/twig/twig/src/Template.php(422): Twig\Template->displayWithErrorHandling(Array, Array)
php_1        | #40 /var/www/html/vendor/twig/twig/src/Template.php(434): Twig\Template->display(Array)
php_1        | #41 /var/www/html/core/themes/engines/twig/twig.engine(64): Twig\Template->render(Array)
php_1        | #42 /var/www/html/core/lib/Drupal/Core/Theme/ThemeManager.php(384): twig_render_template('themes/crusoeth...', Array)
php_1        | #43 /var/www/html/core/lib/Drupal/Core/Render/Renderer.php(431): Drupal\Core\Theme\ThemeManager->render('html', Array)
php_1        | #44 /var/www/html/core/lib/Drupal/Core/Render/Renderer.php(200): Drupal\Core\Render\Renderer->doRender(Array, false)
php_1        | #45 /var/www/html/core/lib/Drupal/Core/Render/MainContent/HtmlRenderer.php(147): Drupal\Core\Render\Renderer->render(Array)
php_1        | #46 /var/www/html/core/lib/Drupal/Core/Render/Renderer.php(573): Drupal\Core\Render\MainContent\HtmlRenderer->Drupal\Core\Render\MainContent\{closure}()
php_1        | #47 /var/www/html/core/lib/Drupal/Core/Render/MainContent/HtmlRenderer.php(148): Drupal\Core\Render\Renderer->executeInRenderContext(Object(Drupal\Core\Render\RenderContext), Object(Closure))
php_1        | #48 /var/www/html/core/lib/Drupal/Core/EventSubscriber/MainContentViewSubscriber.php(90): Drupal\Core\Render\MainContent\HtmlRenderer->renderResponse(Array, Object(Symfony\Component\HttpFoundation\Request), Object(Drupal\Core\Routing\CurrentRouteMatch))
php_1        | #49 [internal function]: Drupal\Core\EventSubscriber\MainContentViewSubscriber->onViewRenderArray(Object(Symfony\Component\HttpKernel\Event\GetResponseForControllerResultEvent), 'kernel.view', Object(Drupal\Component\EventDispatcher\ContainerAwareEventDispatcher))
php_1        | #50 /var/www/html/core/lib/Drupal/Component/EventDispatcher/ContainerAwareEventDispatcher.php(111): call_user_func(Array, Object(Symfony\Component\HttpKernel\Event\GetResponseForControllerResultEvent), 'kernel.view', Object(Drupal\Component\EventDispatcher\ContainerAwareEventDispatcher))
php_1        | #51 /var/www/html/vendor/symfony/http-kernel/HttpKernel.php(156): Drupal\Component\EventDispatcher\ContainerAwareEventDispatcher->dispatch('kernel.view', Object(Symfony\Component\HttpKernel\Event\GetResponseForControllerResultEvent))
php_1        | #52 /var/www/html/vendor/symfony/http-kernel/HttpKernel.php(68): Symfony\Component\HttpKernel\HttpKernel->handleRaw(Object(Symfony\Component\HttpFoundation\Request), 1)
php_1        | #53 /var/www/html/core/lib/Drupal/Core/StackMiddleware/Session.php(57): Symfony\Component\HttpKernel\HttpKernel->handle(Object(Symfony\Component\HttpFoundation\Request), 1, true)
php_1        | #54 /var/www/html/core/lib/Drupal/Core/StackMi...
php_1        | 172.20.0.8 -  22/May/2020:15:18:37 +0000 "GET /index.php" 200
php_1        | 172.20.0.8 -  22/May/2020:15:18:40 +0000 "GET /index.php" 403
nginx_1      | #5 /var/www/html/vendor/twig/twig/src/Environment.php(497) : eval()'d code(58): Twig\Template->getAttribute(Object(__TwigTemplate_adf75e65f08ba896af4945f239f956f6841c55b36ce01504caba8cf1ed9824f7), 'menu_links', Array, 'method')
nginx_1      | #6 /var/www/html/vendor/twig/twig/src/Template.php(455): __TwigTemplate_adf75e65f08ba896af4945f239f956f6841c55b36ce01504caba8cf1ed9824f7->doDisplay(Array, Array)
nginx_1      | #7 /var/www/html/vendor/twig/twig/src/Template.php(422): Twig\Template->displayWithErrorHandling(Array, Array)
nginx_1      | #8 /var/www/html/vendor/twig/twig/src/Template.php(434): Twig\Template->display(Array)
nginx_1      | #9 /var/www/html/core/themes/engines/twig/twig.engine(64): Twig\Template->render(Array)
nginx_1      | #10 /var/www/html/core/lib/Drupal/Core/Theme/ThemeManager.php(384): twig_render_template('profiles/crusoe...', Array)
nginx_1      | #11 /var/www/html/core/lib/Drupal/Core/Render/Ren
nginx_1      | 2020/05/22 15:27:31 [error] 40#40: *46 upstream prematurely closed FastCGI stdout while reading response header from upstream, client: 172.20.0.6, server: default, request: "GET /de/gewerbliche-kunden/gewerbliche-immobilienfinanzierung HTTP/1.1", upstream: "fastcgi://172.20.0.7:9000", host: "drupal8.test"
nginx_1      | 172.20.0.6 - - [22/May/2020:15:27:31 +0000] "GET /de/gewerbliche-kunden/gewerbliche-immobilienfinanzierung HTTP/1.1" 502 150 "-" "Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:76.0) Gecko/20100101 Firefox/76.0"
nginx_1      | 172.20.0.6 - - [22/May/2020:15:27:32 +0000] "GET /favicon.ico HTTP/1.1" 200 43 "-" "Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:76.0) Gecko/20100101 Firefox/76.0"
nginx_1      | 2020/05/22 15:27:32 [info] 40#40: *46 client 172.20.0.6 closed keepalive connection
nginx_1      | 172.20.0.6 - - [22/May/2020:15:30:14 +0000] "GET /de/admin/reports/status HTTP/1.1" 200 29508 "http://drupal8.test/de/pass1/1" "Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:76.0) Gecko/20100101 Firefox/76.0"
nginx_1      | 2020/05/22 15:30:15 [info] 40#40: *48 client 172.20.0.6 closed keepalive connection
nginx_1      | 2020/05/22 15:30:15 [info] 40#40: *51 client 172.20.0.6 closed keepalive connection
nginx_1      | 2020/05/22 15:30:15 [info] 40#40: *55 client closed connection while waiting for request, client: 172.20.0.6, server: 0.0.0.0:80
nginx_1      | 2020/05/22 15:30:15 [info] 39#39: *52 client 172.20.0.6 closed keepalive connection
nginx_1      | 2020/05/22 15:30:15 [info] 40#40: *57 client closed connection while waiting for request, client: 172.20.0.6, server: 0.0.0.0:80
nginx_1      | 2020/05/22 15:30:15 [info] 40#40: *58 client closed connection while waiting for request, client: 172.20.0.6, server: 0.0.0.0:80
nginx_1      | 2020/05/22 15:30:15 [info] 40#40: *59 client closed connection while waiting for request, client: 172.20.0.6, server: 0.0.0.0:80
nginx_1      | 2020/05/22 15:30:15 [info] 40#40: *60 client closed connection while waiting for request, client: 172.20.0.6, server: 0.0.0.0:80
nginx_1      | 2020/05/22 15:30:15 [info] 40#40: *61 client closed connection while waiting for request, client: 172.20.0.6, server: 0.0.0.0:80
nginx_1      | 2020/05/22 15:30:15 [info] 40#40: *62 client closed connection while waiting for request, client: 172.20.0.6, server: 0.0.0.0:80
nginx_1      | 2020/05/22 15:30:15 [info] 40#40: *63 client closed connection while waiting for request, client: 172.20.0.6, server: 0.0.0.0:80
nginx_1      | 2020/05/22 15:30:15 [info] 40#40: *64 client closed connection while waiting for request, client: 172.20.0.6, server: 0.0.0.0:80
nginx_1      | 2020/05/22 15:30:15 [info] 40#40: *65 client closed connection while waiting for request, client: 172.20.0.6, server: 0.0.0.0:80
nginx_1      | 2020/05/22 15:30:15 [info] 40#40: *66 client closed connection while waiting for request, client: 172.20.0.6, server: 0.0.0.0:80
nginx_1      | 2020/05/22 15:30:15 [info] 40#40: *67 client closed connection while waiting for request, client: 172.20.0.6, server: 0.0.0.0:80
nginx_1      | 2020/05/22 15:30:15 [info] 40#40: *68 client closed connection while waiting for request, client: 172.20.0.6, server: 0.0.0.0:80
nginx_1      | 2020/05/22 15:30:15 [info] 39#39: *53 client 172.20.0.6 closed keepalive connection
nginx_1      | 2020/05/22 15:30:15 [info] 39#39: *50 client 172.20.0.6 closed keepalive connection
nginx_1      | 2020/05/22 15:30:15 [info] 39#39: *54 client 172.20.0.6 closed keepalive connection
nginx_1      | 2020/05/22 15:30:15 [info] 39#39: *78 client closed connection while waiting for request, client: 172.20.0.6, server: 0.0.0.0:80
nginx_1      | 2020/05/22 15:30:15 [info] 39#39: *79 client closed connection while waiting for request, client: 172.20.0.6, server: 0.0.0.0:80
nginx_1      | 2020/05/22 15:30:15 [info] 39#39: *83 client closed connection while waiting for request, client: 172.20.0.6, server: 0.0.0.0:80
nginx_1      | 2020/05/22 15:30:15 [error] 39#39: *84 open() "/var/www/html/sites/default/files/languages/de_5dMNsIHXl4MUxVCCRiqr9G-fCryc5IMEkZPGJOAhk3Q.js" failed (2: No such file or directory), client: 172.20.0.6, server: default, request: "GET /sites/default/files/languages/de_5dMNsIHXl4MUxVCCRiqr9G-fCryc5IMEkZPGJOAhk3Q.js?qadoan HTTP/1.1", host: "drupal8.test", referrer: "http://drupal8.test/de/admin/reports/status"
nginx_1      | 2020/05/22 15:30:15 [info] 40#40: *74 client closed connection while waiting for request, client: 172.20.0.6, server: 0.0.0.0:80
nginx_1      | 2020/05/22 15:30:15 [info] 40#40: *75 client closed connection while waiting for request, client: 172.20.0.6, server: 0.0.0.0:80
nginx_1      | 2020/05/22 15:30:15 [info] 40#40: *77 client closed connection while waiting for request, client: 172.20.0.6, server: 0.0.0.0:80
nginx_1      | 2020/05/22 15:30:15 [info] 40#40: *56 client 172.20.0.6 closed keepalive connection
nginx_1      | 2020/05/22 15:30:15 [info] 40#40: *69 client 172.20.0.6 closed keepalive connection
nginx_1      | 2020/05/22 15:30:15 [info] 40#40: *70 client 172.20.0.6 closed keepalive connection
nginx_1      | 2020/05/22 15:30:15 [info] 40#40: *71 client 172.20.0.6 closed keepalive connection
nginx_1      | 2020/05/22 15:30:15 [info] 40#40: *72 client 172.20.0.6 closed keepalive connection
nginx_1      | 2020/05/22 15:30:15 [info] 40#40: *73 client 172.20.0.6 closed keepalive connection
nginx_1      | 2020/05/22 15:30:15 [info] 40#40: *76 client 172.20.0.6 closed keepalive connection
nginx_1      | 2020/05/22 15:30:15 [info] 40#40: *87 client closed connection while waiting for request, client: 172.20.0.6, server: 0.0.0.0:80
nginx_1      | 2020/05/22 15:30:15 [info] 40#40: *88 client closed connection while waiting for request, client: 172.20.0.6, server: 0.0.0.0:80
nginx_1      | 2020/05/22 15:30:15 [info] 40#40: *89 client closed connection while waiting for request, client: 172.20.0.6, server: 0.0.0.0:80
nginx_1      | 2020/05/22 15:30:15 [info] 40#40: *90 client closed connection while waiting for request, client: 172.20.0.6, server: 0.0.0.0:80
nginx_1      | 2020/05/22 15:30:15 [info] 39#39: *85 writev() failed (32: Broken pipe) while sending response to client, client: 172.20.0.6, server: default, request: "GET /core/assets/vendor/jquery/jquery.min.js?v=3.4.1 HTTP/1.1", host: "drupal8.test", referrer: "http://drupal8.test/de/admin/reports/status"
php_1        | 172.20.0.8 -  22/May/2020:15:19:16 +0000 "GET /index.php" 404
php_1        | 172.20.0.8 -  22/May/2020:15:19:16 +0000 "GET /index.php" 404
php_1        | 172.20.0.8 -  22/May/2020:15:19:17 +0000 "GET /index.php" 404
php_1        | 172.20.0.8 -  22/May/2020:15:19:17 +0000 "GET /index.php" 404
php_1        | 172.20.0.8 -  22/May/2020:15:19:24 +0000 "GET /index.php" 302
php_1        | 172.20.0.8 -  22/May/2020:15:19:24 +0000 "GET /index.php" 200
php_1        | 172.20.0.8 -  22/May/2020:15:19:39 +0000 "POST /index.php" 303
php_1        | 172.20.0.8 -  22/May/2020:15:19:40 +0000 "GET /index.php" 200
php_1        | 172.20.0.8 -  22/May/2020:15:19:43 +0000 "POST /index.php" 200
php_1        | 172.20.0.8 -  22/May/2020:15:19:43 +0000 "POST /index.php" 200
php_1        | 172.20.0.8 -  22/May/2020:15:19:43 +0000 "POST /index.php" 200
php_1        | 172.20.0.8 -  22/May/2020:15:19:44 +0000 "POST /index.php" 200
php_1        | 172.20.0.8 -  22/May/2020:15:19:45 +0000 "POST /index.php" 200
php_1        | 172.20.0.8 -  22/May/2020:15:19:45 +0000 "POST /index.php" 200
php_1        | NOTICE: PHP message: AssertionError: $attributes, if set, must be an array or object of type \Drupal\Core\Template\Attribute in /var/www/html/core/lib/Drupal/Core/Template/TwigExtension.php on line 285 #0 /var/www/html/core/lib/Drupal/Core/Template/TwigExtension.php(285): assert(false, '$attributes, if...')
php_1        | #1 /var/www/html/vendor/twig/twig/src/Environment.php(497) : eval()'d code(151): Drupal\Core\Template\TwigExtension->getLink('Gewerbliche Imm...', Object(Drupal\Core\Url), NULL)
php_1        | #2 /var/www/html/vendor/twig/twig/src/Template.php(704): __TwigTemplate_adf75e65f08ba896af4945f239f956f6841c55b36ce01504caba8cf1ed9824f7->getmenu_links(Array, Object(Drupal\Core\Template\Attribute), 1, Array, Array)
php_1        | #3 /var/www/html/vendor/twig/twig/src/Environment.php(497) : eval()'d code(175): Twig\Template->getAttribute(Object(__TwigTemplate_adf75e65f08ba896af4945f239f956f6841c55b36ce01504caba8cf1ed9824f7), 'menu_links', Array, 'method')
php_1        | #4 /var/www/html/vendor/twig/twig/src/Template.php(704): __TwigTemplate_adf75e65f08ba896af4945f239f956f6841c55b36ce01504caba8cf1ed9824f7->getmenu_links(Array, Object(Drupal\Core\Template\Attribute), 0, Array, Array)
php_1        | #5 /var/www/html/vendor/twig/twig/src/Environment.php(497) : eval()'d code(58): Twig\Template->getAttribute(Object(__TwigTemplate_adf75e65f08ba896af4945f239f956f6841c55b36ce01504caba8cf1ed9824f7), 'menu_links', Array, 'method')
php_1        | #6 /var/www/html/vendor/twig/twig/src/Template.php(455): __TwigTemplate_adf75e65f08ba896af4945f239f956f6841c55b36ce01504caba8cf1ed9824f7->doDisplay(Array, Array)
php_1        | #7 /var/www/html/vendor/twig/twig/src/Template.php(422): Twig\Template->displayWithErrorHandling(Array, Array)
php_1        | #8 /var/www/html/vendor/twig/twig/src/Template.php(434): Twig\Template->display(Array)
php_1        | #9 /var/www/html/core/themes/engines/twig/twig.engine(64): Twig\Template->render(Array)
php_1        | #10 /var/www/html/core/lib/Drupal/Core/Theme/ThemeManager.php(384): twig_render_template('profiles/crusoe...', Array)
php_1        | #11 /var/www/html/core/lib/Drupal/Core/Render/Renderer.php(431): Drupal\Core\Theme\ThemeManager->render('menu', Array)
php_1        | #12 /var/www/html/core/lib/Drupal/Core/Render/Renderer.php(200): Drupal\Core\Render\Renderer->doRender(Array, false)
php_1        | #13 /var/www/html/core/lib/Drupal/Core/Template/TwigExtension.php(501): Drupal\Core\Render\Renderer->render(Array)
php_1        | #14 /var/www/html/vendor/twig/twig/src/Environment.php(497) : eval()'d code(102): Drupal\Core\Template\TwigExtension->escapeFilter(Object(Drupal\Core\Template\TwigEnvironment), Array, 'html', NULL, true)
php_1        | #15 /var/www/html/vendor/twig/twig/src/Template.php(216): __TwigTemplate_0b7870f6fa3f539f02fd6cef2982bbdf02f67812456702c5ecec82a3dfb9fd5a->block_content(Array, Array)
php_1        | #16 /var/www/html/vendor/twig/twig/src/Environment.php(497) : eval()'d code(91): Twig\Template->displayBlock('content', Array, Array)
php_1        | #17 /var/www/html/vendor/twig/twig/src/Template.php(455): __TwigTemplate_0b7870f6fa3f539f02fd6cef2982bbdf02f67812456702c5ecec82a3dfb9fd5a->doDisplay(Array, Array)
php_1        | #18 /var/www/html/vendor/twig/twig/src/Template.php(422): Twig\Template->displayWithErrorHandling(Array, Array)
php_1        | #19 /var/www/html/vendor/twig/twig/src/Template.php(434): Twig\Template->display(Array)
php_1        | #20 /var/www/html/core/themes/engines/twig/twig.engine(64): Twig\Template->render(Array)
php_1        | 172.20.0.8 -  22/May/2020:15:27:30 +0000 "GET /index.php" 500
php_1        | #21 /var/www/html/core/lib/Drupal/Core/Theme/ThemeManager.php(384): twig_render_template('core/modules/sy...', Array)
php_1        | #22 /var/www/html/core/lib/Drupal/Core/Render/Renderer.php(431): Drupal\Core\Theme\ThemeManager->render('block', Array)
php_1        | #23 /var/www/html/core/lib/Drupal/Core/Render/Renderer.php(444): Drupal\Core\Render\Renderer->doRender(Array)
php_1        | #24 /var/www/html/core/lib/Drupal/Core/Render/Renderer.php(200): Drupal\Core\Render\Renderer->doRender(Array, false)
php_1        | #25 /var/www/html/core/lib/Drupal/Core/Template/TwigExtension.php(501): Drupal\Core\Render\Renderer->render(Array)
php_1        | #26 /var/www/html/vendor/twig/twig/src/Environment.php(497) : eval()'d code(436): Drupal\Core\Template\TwigExtension->escapeFilter(Object(Drupal\Core\Template\TwigEnvironment), Array, 'html', NULL, true)
php_1        | #27 /var/www/html/vendor/twig/twig/src/Template.php(216): __TwigTemplate_62a0a4db5c8a3bfc436830732eaf3fe81aed379e28bd1110fdd5402ac9fd8611->block_footer_nav_col1(Array, Array)
php_1        | #28 /var/www/html/vendor/twig/twig/src/Environment.php(497) : eval()'d code(118): Twig\Template->displayBlock('footer_nav_col1', Array, Array)
php_1        | #29 /var/www/html/vendor/twig/twig/src/Template.php(455): __TwigTemplate_62a0a4db5c8a3bfc436830732eaf3fe81aed379e28bd1110fdd5402ac9fd8611->doDisplay(Array, Array)
php_1        | #30 /var/www/html/vendor/twig/twig/src/Template.php(422): Twig\Template->displayWithErrorHandling(Array, Array)
php_1        | #31 /var/www/html/vendor/twig/twig/src/Template.php(434): Twig\Template->display(Array)
php_1        | #32 /var/www/html/core/themes/engines/twig/twig.engine(64): Twig\Template->render(Array)
php_1        | #33 /var/www/html/core/lib/Drupal/Core/Theme/ThemeManager.php(384): twig_render_template('themes/crusoeth...', Array)
php_1        | #34 /var/www/html/core/lib/Drupal/Core/Render/Renderer.php(431): Drupal\Core\Theme\ThemeManager->render('page', Array)
php_1        | #35 /var/www/html/core/lib/Drupal/Core/Render/Renderer.php(200): Drupal\Core\Render\Renderer->doRender(Array, false)
php_1        | #36 /var/www/html/core/lib/Drupal/Core/Template/TwigExtension.php(501): Drupal\Core\Render\Renderer->render(Array)
php_1        | #37 /var/www/html/vendor/twig/twig/src/Environment.php(497) : eval()'d code(117): Drupal\Core\Template\TwigExtension->escapeFilter(Object(Drupal\Core\Template\TwigEnvironment), Array, 'html', NULL, true)
nginx_1      | 2020/05/22 15:30:15 [info] 40#40: *92 client closed connection while waiting for request, client: 172.20.0.6, server: 0.0.0.0:80
nginx_1      | 2020/05/22 15:30:15 [info] 40#40: *93 client closed connection while waiting for request, client: 172.20.0.6, server: 0.0.0.0:80
nginx_1      | 2020/05/22 15:30:15 [info] 40#40: *94 client closed connection while waiting for request, client: 172.20.0.6, server: 0.0.0.0:80
nginx_1      | 2020/05/22 15:30:15 [info] 40#40: *95 client closed connection while waiting for request, client: 172.20.0.6, server: 0.0.0.0:80
nginx_1      | 2020/05/22 15:30:15 [info] 40#40: *96 client closed connection while waiting for request, client: 172.20.0.6, server: 0.0.0.0:80
nginx_1      | 2020/05/22 15:30:15 [info] 40#40: *97 client closed connection while waiting for request, client: 172.20.0.6, server: 0.0.0.0:80
nginx_1      | 2020/05/22 15:30:15 [info] 40#40: *98 client closed connection while waiting for request, client: 172.20.0.6, server: 0.0.0.0:80
nginx_1      | 2020/05/22 15:30:15 [info] 40#40: *99 client closed connection while waiting for request, client: 172.20.0.6, server: 0.0.0.0:80
nginx_1      | 2020/05/22 15:30:15 [info] 40#40: *100 client closed connection while waiting for request, client: 172.20.0.6, server: 0.0.0.0:80
nginx_1      | 2020/05/22 15:30:15 [info] 40#40: *101 client closed connection while waiting for request, client: 172.20.0.6, server: 0.0.0.0:80
php_1        | #38 /var/www/html/vendor/twig/twig/src/Template.php(455): __TwigTemplate_2bb40c50b81cafb8c8f8d5b795c42d2a4989148fe1cc5ae7168260f650887a53->doDisplay(Array, Array)
php_1        | #39 /var/www/html/vendor/twig/twig/src/Template.php(422): Twig\Template->displayWithErrorHandling(Array, Array)
php_1        | #40 /var/www/html/vendor/twig/twig/src/Template.php(434): Twig\Template->display(Array)
php_1        | #41 /var/www/html/core/themes/engines/twig/twig.engine(64): Twig\Template->render(Array)
php_1        | #42 /var/www/html/core/lib/Drupal/Core/Theme/ThemeManager.php(384): twig_render_template('themes/crusoeth...', Array)
php_1        | #43 /var/www/html/core/lib/Drupal/Core/Render/Renderer.php(431): Drupal\Core\Theme\ThemeManager->render('html', Array)
php_1        | #44 /var/www/html/core/lib/Drupal/Core/Render/Renderer.php(200): Drupal\Core\Render\Renderer->doRender(Array, false)
php_1        | #45 /var/www/html/core/lib/Drupal/Core/Render/MainContent/HtmlRenderer.php(147): Drupal\Core\Render\Renderer->render(Array)
php_1        | #46 /var/www/html/core/lib/Drupal/Core/Render/Renderer.php(573): Drupal\Core\Render\MainContent\HtmlRenderer->Drupal\Core\Render\MainContent\{closure}()
php_1        | #47 /var/www/html/core/lib/Drupal/Core/Render/MainContent/HtmlRenderer.php(148): Drupal\Core\Render\Renderer->executeInRenderContext(Object(Drupal\Core\Render\RenderContext), Object(Closure))
php_1        | #48 /var/www/html/core/lib/Drupal/Core/EventSubscriber/MainContentViewSubscriber.php(90): Drupal\Core\Render\MainContent\HtmlRenderer->renderResponse(Array, Object(Symfony\Component\HttpFoundation\Request), Object(Drupal\Core\Routing\CurrentRouteMatch))
php_1        | #49 [internal function]: Drupal\Core\EventSubscriber\MainContentViewSubscriber->onViewRenderArray(Object(Symfony\Component\HttpKernel\Event\GetResponseForControllerResultEvent), 'kernel.view', Object(Drupal\Component\EventDispatcher\ContainerAwareEventDispatcher))
php_1        | #50 /var/www/html/core/lib/Drupal/Component/EventDispatcher/ContainerAwareEventDispatcher.php(111): call_user_func(Array, Object(Symfony\Component\HttpKernel\Event\GetResponseForControllerResultEvent), 'kernel.view', Object(Drupal\Component\EventDispatcher\ContainerAwareEventDispatcher))
php_1        | #51 /var/www/html/vendor/symfony/http-kernel/HttpKernel.php(156): Drupal\Component\EventDispatcher\ContainerAwareEventDispatcher->dispatch('kernel.view', Object(Symfony\Component\HttpKernel\Event\GetResponseForControllerResultEvent))
php_1        | #52 /var/www/html/vendor/symfony/http-kernel/HttpKernel.php(68): Symfony\Component\HttpKernel\HttpKernel->handleRaw(Object(Symfony\Component\HttpFoundation\Request), 1)
php_1        | #53 /var/www/html/core/lib/Drupal/Core/StackMiddleware/Session.php(57): Symfony\Component\HttpKernel\HttpKernel->handle(Object(Symfony\Component\HttpFoundation\Request), 1, true)
php_1        | #54 /var/www/html/core/lib/Drupal/Core/StackMi...
php_1        | 172.20.0.8 -  22/May/2020:15:29:59 +0000 "GET /index.php" 200
php_1        | 172.20.0.8 -  22/May/2020:15:30:25 +0000 "GET /index.php" 200
php_1        | NOTICE: PHP message: AssertionError: $attributes, if set, must be an array or object of type \Drupal\Core\Template\Attribute in /var/www/html/core/lib/Drupal/Core/Template/TwigExtension.php on line 285 #0 /var/www/html/core/lib/Drupal/Core/Template/TwigExtension.php(285): assert(false, '$attributes, if...')
php_1        | #1 /var/www/html/vendor/twig/twig/src/Environment.php(497) : eval()'d code(151): Drupal\Core\Template\TwigExtension->getLink('Gewerbliche Imm...', Object(Drupal\Core\Url), NULL)
php_1        | #2 /var/www/html/vendor/twig/twig/src/Template.php(704): __TwigTemplate_adf75e65f08ba896af4945f239f956f6841c55b36ce01504caba8cf1ed9824f7->getmenu_links(Array, Object(Drupal\Core\Template\Attribute), 1, Array, Array)
php_1        | #3 /var/www/html/vendor/twig/twig/src/Environment.php(497) : eval()'d code(175): Twig\Template->getAttribute(Object(__TwigTemplate_adf75e65f08ba896af4945f239f956f6841c55b36ce01504caba8cf1ed9824f7), 'menu_links', Array, 'method')
php_1        | #4 /var/www/html/vendor/twig/twig/src/Template.php(704): __TwigTemplate_adf75e65f08ba896af4945f239f956f6841c55b36ce01504caba8cf1ed9824f7->getmenu_links(Array, Object(Drupal\Core\Template\Attribute), 0, Array, Array)
php_1        | #5 /var/www/html/vendor/twig/twig/src/Environment.php(497) : eval()'d code(58): Twig\Template->getAttribute(Object(__TwigTemplate_adf75e65f08ba896af4945f239f956f6841c55b36ce01504caba8cf1ed9824f7), 'menu_links', Array, 'method')
php_1        | #6 /var/www/html/vendor/twig/twig/src/Template.php(455): __TwigTemplate_adf75e65f08ba896af4945f239f956f6841c55b36ce01504caba8cf1ed9824f7->doDisplay(Array, Array)
php_1        | #7 /var/www/html/vendor/twig/twig/src/Template.php(422): Twig\Template->displayWithErrorHandling(Array, Array)
php_1        | #8 /var/www/html/vendor/twig/twig/src/Template.php(434): Twig\Template->display(Array)
php_1        | #9 /var/www/html/core/themes/engines/twig/twig.engine(64): Twig\Template->render(Array)
php_1        | #10 /var/www/html/core/lib/Drupal/Core/Theme/ThemeManager.php(384): twig_render_template('profiles/crusoe...', Array)
php_1        | #11 /var/www/html/core/lib/Drupal/Core/Render/Renderer.php(431): Drupal\Core\Theme\ThemeManager->render('menu', Array)
php_1        | #12 /var/www/html/core/lib/Drupal/Core/Render/Renderer.php(200): Drupal\Core\Render\Renderer->doRender(Array, false)
php_1        | #13 /var/www/html/core/lib/Drupal/Core/Template/TwigExtension.php(501): Drupal\Core\Render\Renderer->render(Array)
php_1        | #14 /var/www/html/vendor/twig/twig/src/Environment.php(497) : eval()'d code(102): Drupal\Core\Template\TwigExtension->escapeFilter(Object(Drupal\Core\Template\TwigEnvironment), Array, 'html', NULL, true)
php_1        | 172.20.0.8 -  22/May/2020:15:37:26 +0000 "GET /index.php" 500
php_1        | #15 /var/www/html/vendor/twig/twig/src/Template.php(216): __TwigTemplate_0b7870f6fa3f539f02fd6cef2982bbdf02f67812456702c5ecec82a3dfb9fd5a->block_content(Array, Array)
php_1        | #16 /var/www/html/vendor/twig/twig/src/Environment.php(497) : eval()'d code(91): Twig\Template->displayBlock('content', Array, Array)
php_1        | #17 /var/www/html/vendor/twig/twig/src/Template.php(455): __TwigTemplate_0b7870f6fa3f539f02fd6cef2982bbdf02f67812456702c5ecec82a3dfb9fd5a->doDisplay(Array, Array)
php_1        | #18 /var/www/html/vendor/twig/twig/src/Template.php(422): Twig\Template->displayWithErrorHandling(Array, Array)
php_1        | #19 /var/www/html/vendor/twig/twig/src/Template.php(434): Twig\Template->display(Array)
php_1        | #20 /var/www/html/core/themes/engines/twig/twig.engine(64): Twig\Template->render(Array)
php_1        | #21 /var/www/html/core/lib/Drupal/Core/Theme/ThemeManager.php(384): twig_render_template('core/modules/sy...', Array)
php_1        | #22 /var/www/html/core/lib/Drupal/Core/Render/Renderer.php(431): Drupal\Core\Theme\ThemeManager->render('block', Array)
php_1        | #23 /var/www/html/core/lib/Drupal/Core/Render/Renderer.php(444): Drupal\Core\Render\Renderer->doRender(Array)
php_1        | #24 /var/www/html/core/lib/Drupal/Core/Render/Renderer.php(200): Drupal\Core\Render\Renderer->doRender(Array, false)
php_1        | #25 /var/www/html/core/lib/Drupal/Core/Template/TwigExtension.php(501): Drupal\Core\Render\Renderer->render(Array)
php_1        | #26 /var/www/html/vendor/twig/twig/src/Environment.php(497) : eval()'d code(436): Drupal\Core\Template\TwigExtension->escapeFilter(Object(Drupal\Core\Template\TwigEnvironment), Array, 'html', NULL, true)
php_1        | #27 /var/www/html/vendor/twig/twig/src/Template.php(216): __TwigTemplate_62a0a4db5c8a3bfc436830732eaf3fe81aed379e28bd1110fdd5402ac9fd8611->block_footer_nav_col1(Array, Array)
php_1        | #28 /var/www/html/vendor/twig/twig/src/Environment.php(497) : eval()'d code(118): Twig\Template->displayBlock('footer_nav_col1', Array, Array)
nginx_1      | 2020/05/22 15:30:15 [info] 40#40: *102 client closed connection while waiting for request, client: 172.20.0.6, server: 0.0.0.0:80
nginx_1      | 2020/05/22 15:30:15 [info] 40#40: *103 client closed connection while waiting for request, client: 172.20.0.6, server: 0.0.0.0:80
nginx_1      | 2020/05/22 15:30:15 [info] 40#40: *104 client closed connection while waiting for request, client: 172.20.0.6, server: 0.0.0.0:80
nginx_1      | 2020/05/22 15:30:15 [info] 40#40: *105 client closed connection while waiting for request, client: 172.20.0.6, server: 0.0.0.0:80
nginx_1      | 2020/05/22 15:30:15 [info] 39#39: *81 client 172.20.0.6 closed keepalive connection
nginx_1      | 2020/05/22 15:30:15 [info] 39#39: *86 client 172.20.0.6 closed keepalive connection
nginx_1      | 2020/05/22 15:30:15 [info] 40#40: *107 client closed connection while waiting for request, client: 172.20.0.6, server: 0.0.0.0:80
nginx_1      | 2020/05/22 15:30:15 [info] 39#39: *82 client 172.20.0.6 closed keepalive connection
nginx_1      | 2020/05/22 15:30:15 [info] 40#40: *109 client closed connection while waiting for request, client: 172.20.0.6, server: 0.0.0.0:80
nginx_1      | 2020/05/22 15:30:15 [info] 39#39: *84 client 172.20.0.6 closed keepalive connection
nginx_1      | 2020/05/22 15:30:15 [info] 39#39: *80 client 172.20.0.6 closed keepalive connection
nginx_1      | 2020/05/22 15:30:15 [info] 39#39: *112 client closed connection while waiting for request, client: 172.20.0.6, server: 0.0.0.0:80
nginx_1      | 2020/05/22 15:30:15 [info] 40#40: *111 client closed connection while waiting for request, client: 172.20.0.6, server: 0.0.0.0:80
nginx_1      | 2020/05/22 15:30:15 [info] 40#40: *91 client 172.20.0.6 closed keepalive connection
nginx_1      | 2020/05/22 15:30:15 [info] 40#40: *106 client 172.20.0.6 closed keepalive connection
nginx_1      | 2020/05/22 15:30:15 [info] 40#40: *108 client 172.20.0.6 closed keepalive connection
nginx_1      | 2020/05/22 15:30:15 [info] 40#40: *110 client 172.20.0.6 closed keepalive connection
nginx_1      | 2020/05/22 15:30:15 [info] 39#39: *114 client closed connection while waiting for request, client: 172.20.0.6, server: 0.0.0.0:80
nginx_1      | 2020/05/22 15:30:15 [info] 39#39: *117 client closed connection while waiting for request, client: 172.20.0.6, server: 0.0.0.0:80
nginx_1      | 2020/05/22 15:30:15 [info] 39#39: *118 client closed connection while waiting for request, client: 172.20.0.6, server: 0.0.0.0:80
nginx_1      | 2020/05/22 15:30:15 [info] 39#39: *119 client closed connection while waiting for request, client: 172.20.0.6, server: 0.0.0.0:80
nginx_1      | 2020/05/22 15:30:15 [info] 39#39: *120 client closed connection while waiting for request, client: 172.20.0.6, server: 0.0.0.0:80
nginx_1      | 2020/05/22 15:30:15 [info] 39#39: *121 client closed connection while waiting for request, client: 172.20.0.6, server: 0.0.0.0:80
nginx_1      | 2020/05/22 15:30:15 [info] 39#39: *122 client closed connection while waiting for request, client: 172.20.0.6, server: 0.0.0.0:80
nginx_1      | 2020/05/22 15:30:15 [info] 39#39: *113 client 172.20.0.6 closed keepalive connection
nginx_1      | 2020/05/22 15:30:15 [info] 39#39: *115 client 172.20.0.6 closed keepalive connection
nginx_1      | 2020/05/22 15:30:15 [info] 39#39: *116 client 172.20.0.6 closed keepalive connection
nginx_1      | 2020/05/22 15:30:15 [info] 39#39: *123 client 172.20.0.6 closed keepalive connection
nginx_1      | 2020/05/22 15:30:15 [error] 40#40: *124 open() "/var/www/html/sites/default/files/languages/de_5dMNsIHXl4MUxVCCRiqr9G-fCryc5IMEkZPGJOAhk3Q.js" failed (2: No such file or directory), client: 172.20.0.6, server: default, request: "GET /sites/default/files/languages/de_5dMNsIHXl4MUxVCCRiqr9G-fCryc5IMEkZPGJOAhk3Q.js?qadoan HTTP/1.1", host: "drupal8.test", referrer: "http://drupal8.test/de/admin/reports/status"
nginx_1      | 2020/05/22 15:30:15 [info] 40#40: *124 client 172.20.0.6 closed keepalive connection
nginx_1      | 2020/05/22 15:30:15 [info] 40#40: *129 client closed connection while waiting for request, client: 172.20.0.6, server: 0.0.0.0:80
nginx_1      | 172.20.0.6 - - [22/May/2020:15:30:25 +0000] "GET /de/admin/reports/status/php HTTP/1.1" 200 33160 "http://drupal8.test/de/admin/reports/status" "Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:76.0) Gecko/20100101 Firefox/76.0"
nginx_1      | 2020/05/22 15:37:27 [error] 40#40: *132 FastCGI sent in stderr: "PHP message: AssertionError: $attributes, if set, must be an array or object of type \Drupal\Core\Template\Attribute in /var/www/html/core/lib/Drupal/Core/Template/TwigExtension.php on line 285 #0 /var/www/html/core/lib/Drupal/Core/Template/TwigExtension.php(285): assert(false, '$attributes, if...')
nginx_1      | #1 /var/www/html/vendor/twig/twig/src/Environment.php(497) : eval()'d code(151): Drupal\Core\Template\TwigExtension->getLink('Gewerbliche Imm...', Object(Drupal\Core\Url), NULL)
nginx_1      | #2 /var/www/html/vendor/twig/twig/src/Template.php(704): __TwigTemplate_adf75e65f08ba896af4945f239f956f6841c55b36ce01504caba8cf1ed9824f7->getmenu_links(Array, Object(Drupal\Core\Template\Attribute), 1, Array, Array)
nginx_1      | #3 /var/www/html/vendor/twig/twig/src/Environment.php(497) : eval()'d code(175): Twig\Template->getAttribute(Object(__TwigTemplate_adf75e65f08ba896af4945f239f956f6841c55b36ce01504caba8cf1ed9824f7), 'menu_links', Array, 'method')
nginx_1      | #4 /var/www/html/vendor/twig/twig/src/Template.php(704): __TwigTemplate_adf75e65f08ba896af4945f239f956f6841c55b36ce01504caba8cf1ed9824f7->getmenu_links(Array, Object(Drupal\Core\Template\Attribute), 0, Array, Array)
nginx_1      | #5 /var/www/html/vendor/twig/twig/src/Environment.php(497) : eval()'d code(58): Twig\Template->getAttribute(Object(__TwigTemplate_adf75e65f08ba896af4945f239f956f6841c55b36ce01504caba8cf1ed9824f7), 'menu_links', Array, 'method')
nginx_1      | #6 /var/www/html/vendor/twig/twig/src/Template.php(455): __TwigTemplate_adf75e65f08ba896af4945f239f956f6841c55b36ce01504caba8cf1ed9824f7->doDisplay(Array, Array)
nginx_1      | #7 /var/www/html/vendor/twig/twig/src/Template.php(422): Twig\Template->displayWithErrorHandling(Array, Array)
nginx_1      | #8 /var/www/html/vendor/twig/twig/src/Template.php(434): Twig\Template->display(Array)
nginx_1      | #9 /var/www/html/core/themes/engines/twig/twig.engine(64): Twig\Template->render(Array)
nginx_1      | #10 /var/www/html/core/lib/Drupal/Core/Theme/ThemeManager.php(384): twig_render_template('profiles/crusoe...', Array)
php_1        | #29 /var/www/html/vendor/twig/twig/src/Template.php(455): __TwigTemplate_62a0a4db5c8a3bfc436830732eaf3fe81aed379e28bd1110fdd5402ac9fd8611->doDisplay(Array, Array)
php_1        | #30 /var/www/html/vendor/twig/twig/src/Template.php(422): Twig\Template->displayWithErrorHandling(Array, Array)
php_1        | #31 /var/www/html/vendor/twig/twig/src/Template.php(434): Twig\Template->display(Array)
php_1        | #32 /var/www/html/core/themes/engines/twig/twig.engine(64): Twig\Template->render(Array)
php_1        | #33 /var/www/html/core/lib/Drupal/Core/Theme/ThemeManager.php(384): twig_render_template('themes/crusoeth...', Array)
php_1        | #34 /var/www/html/core/lib/Drupal/Core/Render/Renderer.php(431): Drupal\Core\Theme\ThemeManager->render('page', Array)
php_1        | #35 /var/www/html/core/lib/Drupal/Core/Render/Renderer.php(200): Drupal\Core\Render\Renderer->doRender(Array, false)
php_1        | #36 /var/www/html/core/lib/Drupal/Core/Template/TwigExtension.php(501): Drupal\Core\Render\Renderer->render(Array)
nginx_1      | #11 /var/www/html/core/lib/Drupal/Core/Render/Re
nginx_1      | 2020/05/22 15:37:27 [error] 40#40: *132 upstream prematurely closed FastCGI stdout while reading response header from upstream, client: 172.20.0.6, server: default, request: "GET /de/gewerbliche-kunden/gewerbliche-immobilienfinanzierung HTTP/1.1", upstream: "fastcgi://172.20.0.7:9000", host: "drupal8.test"
nginx_1      | 172.20.0.6 - - [22/May/2020:15:37:27 +0000] "GET /de/gewerbliche-kunden/gewerbliche-immobilienfinanzierung HTTP/1.1" 502 150 "-" "Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:76.0) Gecko/20100101 Firefox/76.0"
php_1        | #37 /var/www/html/vendor/twig/twig/src/Environment.php(497) : eval()'d code(117): Drupal\Core\Template\TwigExtension->escapeFilter(Object(Drupal\Core\Template\TwigEnvironment), Array, 'html', NULL, true)
php_1        | #38 /var/www/html/vendor/twig/twig/src/Template.php(455): __TwigTemplate_2bb40c50b81cafb8c8f8d5b795c42d2a4989148fe1cc5ae7168260f650887a53->doDisplay(Array, Array)
php_1        | #39 /var/www/html/vendor/twig/twig/src/Template.php(422): Twig\Template->displayWithErrorHandling(Array, Array)
php_1        | #40 /var/www/html/vendor/twig/twig/src/Template.php(434): Twig\Template->display(Array)
php_1        | #41 /var/www/html/core/themes/engines/twig/twig.engine(64): Twig\Template->render(Array)
php_1        | #42 /var/www/html/core/lib/Drupal/Core/Theme/ThemeManager.php(384): twig_render_template('themes/crusoeth...', Array)
php_1        | #43 /var/www/html/core/lib/Drupal/Core/Render/Renderer.php(431): Drupal\Core\Theme\ThemeManager->render('html', Array)
php_1        | #44 /var/www/html/core/lib/Drupal/Core/Render/Renderer.php(200): Drupal\Core\Render\Renderer->doRender(Array, false)
php_1        | #45 /var/www/html/core/lib/Drupal/Core/Render/MainContent/HtmlRenderer.php(147): Drupal\Core\Render\Renderer->render(Array)
php_1        | #46 /var/www/html/core/lib/Drupal/Core/Render/Renderer.php(573): Drupal\Core\Render\MainContent\HtmlRenderer->Drupal\Core\Render\MainContent\{closure}()
php_1        | #47 /var/www/html/core/lib/Drupal/Core/Render/MainContent/HtmlRenderer.php(148): Drupal\Core\Render\Renderer->executeInRenderContext(Object(Drupal\Core\Render\RenderContext), Object(Closure))
php_1        | #48 /var/www/html/core/lib/Drupal/Core/EventSubscriber/MainContentViewSubscriber.php(90): Drupal\Core\Render\MainContent\HtmlRenderer->renderResponse(Array, Object(Symfony\Component\HttpFoundation\Request), Object(Drupal\Core\Routing\CurrentRouteMatch))
php_1        | #49 [internal function]: Drupal\Core\EventSubscriber\MainContentViewSubscriber->onViewRenderArray(Object(Symfony\Component\HttpKernel\Event\GetResponseForControllerResultEvent), 'kernel.view', Object(Drupal\Component\EventDispatcher\ContainerAwareEventDispatcher))
php_1        | #50 /var/www/html/core/lib/Drupal/Component/EventDispatcher/ContainerAwareEventDispatcher.php(111): call_user_func(Array, Object(Symfony\Component\HttpKernel\Event\GetResponseForControllerResultEvent), 'kernel.view', Object(Drupal\Component\EventDispatcher\ContainerAwareEventDispatcher))
php_1        | #51 /var/www/html/vendor/symfony/http-kernel/HttpKernel.php(156): Drupal\Component\EventDispatcher\ContainerAwareEventDispatcher->dispatch('kernel.view', Object(Symfony\Component\HttpKernel\Event\GetResponseForControllerResultEvent))
php_1        | #52 /var/www/html/vendor/symfony/http-kernel/HttpKernel.php(68): Symfony\Component\HttpKernel\HttpKernel->handleRaw(Object(Symfony\Component\HttpFoundation\Request), 1)
php_1        | #53 /var/www/html/core/lib/Drupal/Core/StackMiddleware/Session.php(57): Symfony\Component\HttpKernel\HttpKernel->handle(Object(Symfony\Component\HttpFoundation\Request), 1, true)
php_1        | #54 /var/www/html/core/lib/Drupal/Core/StackMi...
pma_1        | phpMyAdmin not found in /var/www/html - copying now...
pma_1        | Complete! phpMyAdmin has been successfully copied to /var/www/html
pma_1        | Adding the custom upload limit.
pma_1        | AH00558: apache2: Could not reliably determine the server's fully qualified domain name, using 172.20.0.3. Set the 'ServerName' directive globally to suppress this message
pma_1        | AH00558: apache2: Could not reliably determine the server's fully qualified domain name, using 172.20.0.3. Set the 'ServerName' directive globally to suppress this message
pma_1        | [Fri May 22 15:16:39.535784 2020] [mpm_prefork:notice] [pid 1] AH00163: Apache/2.4.38 (Debian) PHP/7.4.4 configured -- resuming normal operations
pma_1        | [Fri May 22 15:16:39.536204 2020] [core:notice] [pid 1] AH00094: Command line: 'apache2 -D FOREGROUND'
pma_1        | 172.20.0.6 - - [22/May/2020:15:17:14 +0000] "GET / HTTP/1.1" 200 3833 "-" "Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:76.0) Gecko/20100101 Firefox/76.0"
pma_1        | 172.20.0.6 - - [22/May/2020:15:17:15 +0000] "GET /themes/pmahomme/css/theme.css?v=5.0.2&nocache=4754296135ltr&server=1 HTTP/1.1" 200 20543 "-" "Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:76.0) Gecko/20100101 Firefox/76.0"
pma_1        | 172.20.0.6 - - [22/May/2020:15:17:16 +0000] "GET /themes/pmahomme/img/s_error.png HTTP/1.1" 200 843 "http://pma.drupal8.test/themes/pmahomme/css/theme.css?v=5.0.2&nocache=4754296135ltr&server=1" "Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:76.0) Gecko/20100101 Firefox/76.0"
pma_1        | 172.20.0.6 - - [22/May/2020:15:17:53 +0000] "GET / HTTP/1.1" 200 3758 "-" "Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:76.0) Gecko/20100101 Firefox/76.0"
pma_1        | 172.20.0.6 - - [22/May/2020:15:17:54 +0000] "GET /js/vendor/jquery/jquery.ba-hashchange-1.3.js?v=5.0.2 HTTP/1.1" 200 5629 "-" "Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:76.0) Gecko/20100101 Firefox/76.0"
pma_1        | 172.20.0.6 - - [22/May/2020:15:17:54 +0000] "GET /js/vendor/jquery/jquery-ui-timepicker-addon.js?v=5.0.2 HTTP/1.1" 200 19227 "-" "Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:76.0) Gecko/20100101 Firefox/76.0"
pma_1        | 172.20.0.6 - - [22/May/2020:15:17:54 +0000] "GET /js/vendor/jquery/jquery.debounce-1.0.5.js?v=5.0.2 HTTP/1.1" 200 823 "-" "Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:76.0) Gecko/20100101 Firefox/76.0"
pma_1        | 172.20.0.6 - - [22/May/2020:15:17:54 +0000] "GET /js/menu_resizer.js?v=5.0.2 HTTP/1.1" 200 2584 "-" "Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:76.0) Gecko/20100101 Firefox/76.0"
pma_1        | 172.20.0.6 - - [22/May/2020:15:17:54 +0000] "GET /js/cross_framing_protection.js?v=5.0.2 HTTP/1.1" 200 593 "-" "Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:76.0) Gecko/20100101 Firefox/76.0"
pma_1        | 172.20.0.6 - - [22/May/2020:15:17:54 +0000] "GET /js/error_report.js?v=5.0.2 HTTP/1.1" 200 2995 "-" "Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:76.0) Gecko/20100101 Firefox/76.0"
pma_1        | 172.20.0.6 - - [22/May/2020:15:17:54 +0000] "GET /js/config.js?v=5.0.2 HTTP/1.1" 200 7105 "-" "Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:76.0) Gecko/20100101 Firefox/76.0"
pma_1        | 172.20.0.6 - - [22/May/2020:15:17:54 +0000] "GET /js/doclinks.js?v=5.0.2 HTTP/1.1" 200 4048 "-" "Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:76.0) Gecko/20100101 Firefox/76.0"
pma_1        | 172.20.0.6 - - [22/May/2020:15:17:54 +0000] "GET /js/rte.js?v=5.0.2 HTTP/1.1" 200 8800 "-" "Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:76.0) Gecko/20100101 Firefox/76.0"
pma_1        | 172.20.0.6 - - [22/May/2020:15:17:54 +0000] "GET /js/vendor/tracekit.js?v=5.0.2 HTTP/1.1" 200 11678 "-" "Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:76.0) Gecko/20100101 Firefox/76.0"
pma_1        | 172.20.0.6 - - [22/May/2020:15:17:54 +0000] "GET /js/navigation.js?v=5.0.2 HTTP/1.1" 200 12752 "-" "Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:76.0) Gecko/20100101 Firefox/76.0"
pma_1        | 172.20.0.6 - - [22/May/2020:15:17:54 +0000] "GET /js/indexes.js?v=5.0.2 HTTP/1.1" 200 6805 "-" "Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:76.0) Gecko/20100101 Firefox/76.0"
pma_1        | 172.20.0.6 - - [22/May/2020:15:17:54 +0000] "GET /js/page_settings.js?v=5.0.2 HTTP/1.1" 200 934 "-" "Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:76.0) Gecko/20100101 Firefox/76.0"
pma_1        | 172.20.0.6 - - [22/May/2020:15:17:54 +0000] "GET /js/drag_drop_import.js?v=5.0.2 HTTP/1.1" 200 3901 "-" "Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:76.0) Gecko/20100101 Firefox/76.0"
pma_1        | 172.20.0.6 - - [22/May/2020:15:17:54 +0000] "GET /js/common.js?v=5.0.2 HTTP/1.1" 200 1739 "-" "Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:76.0) Gecko/20100101 Firefox/76.0"
pma_1        | 172.20.0.6 - - [22/May/2020:15:17:54 +0000] "GET /js/vendor/codemirror/addon/runmode/runmode.js?v=5.0.2 HTTP/1.1" 200 1335 "-" "Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:76.0) Gecko/20100101 Firefox/76.0"
pma_1        | 172.20.0.6 - - [22/May/2020:15:17:54 +0000] "GET /js/shortcuts_handler.js?v=5.0.2 HTTP/1.1" 200 1177 "-" "Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:76.0) Gecko/20100101 Firefox/76.0"
pma_1        | 172.20.0.6 - - [22/May/2020:15:17:54 +0000] "GET /js/vendor/codemirror/addon/hint/sql-hint.js?v=5.0.2 HTTP/1.1" 200 3035 "-" "Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:76.0) Gecko/20100101 Firefox/76.0"
pma_1        | 172.20.0.6 - - [22/May/2020:15:17:54 +0000] "GET /js/vendor/codemirror/addon/hint/show-hint.js?v=5.0.2 HTTP/1.1" 200 5233 "-" "Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:76.0) Gecko/20100101 Firefox/76.0"
pma_1        | 172.20.0.6 - - [22/May/2020:15:17:54 +0000] "GET /js/vendor/codemirror/mode/sql/sql.js?v=5.0.2 HTTP/1.1" 200 13581 "-" "Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:76.0) Gecko/20100101 Firefox/76.0"
pma_1        | 172.20.0.6 - - [22/May/2020:15:17:54 +0000] "GET /js/vendor/codemirror/addon/lint/lint.js?v=5.0.2 HTTP/1.1" 200 2878 "-" "Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:76.0) Gecko/20100101 Firefox/76.0"
traefik_1    | time="2020-05-22T15:16:37Z" level=info msg="Configuration loaded from flags."
pma_1        | 172.20.0.6 - - [22/May/2020:15:17:54 +0000] "GET /js/codemirror/addon/lint/sql-lint.js?v=5.0.2 HTTP/1.1" 200 754 "-" "Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:76.0) Gecko/20100101 Firefox/76.0"
pma_1        | 172.20.0.6 - - [22/May/2020:15:17:54 +0000] "GET /js/vendor/codemirror/lib/codemirror.css?v=5.0.2 HTTP/1.1" 200 2824 "-" "Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:76.0) Gecko/20100101 Firefox/76.0"
pma_1        | 172.20.0.6 - - [22/May/2020:15:17:54 +0000] "GET /js/console.js?v=5.0.2 HTTP/1.1" 200 10714 "-" "Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:76.0) Gecko/20100101 Firefox/76.0"
pma_1        | 172.20.0.6 - - [22/May/2020:15:17:54 +0000] "GET /themes/pmahomme/jquery/jquery-ui.css HTTP/1.1" 200 8768 "-" "Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:76.0) Gecko/20100101 Firefox/76.0"
pma_1        | 172.20.0.6 - - [22/May/2020:15:17:54 +0000] "GET /js/functions.js?v=5.0.2 HTTP/1.1" 200 42000 "-" "Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:76.0) Gecko/20100101 Firefox/76.0"
pma_1        | 172.20.0.6 - - [22/May/2020:15:17:54 +0000] "GET /js/vendor/codemirror/addon/hint/show-hint.css?v=5.0.2 HTTP/1.1" 200 604 "-" "Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:76.0) Gecko/20100101 Firefox/76.0"
pma_1        | 172.20.0.6 - - [22/May/2020:15:17:54 +0000] "GET /js/vendor/codemirror/addon/lint/lint.css?v=5.0.2 HTTP/1.1" 200 1548 "-" "Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:76.0) Gecko/20100101 Firefox/76.0"
pma_1        | 172.20.0.6 - - [22/May/2020:15:17:54 +0000] "GET /themes/pmahomme/css/printview.css?v=5.0.2 HTTP/1.1" 200 928 "-" "Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:76.0) Gecko/20100101 Firefox/76.0"
pma_1        | 172.20.0.6 - - [22/May/2020:15:17:54 +0000] "GET /js/vendor/jquery/jquery-migrate.js?v=5.0.2 HTTP/1.1" 200 6450 "-" "Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:76.0) Gecko/20100101 Firefox/76.0"
pma_1        | 172.20.0.6 - - [22/May/2020:15:17:54 +0000] "GET /themes/pmahomme/css/theme.css?v=5.0.2&nocache=4754296135ltr&server=1 HTTP/1.1" 200 20543 "-" "Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:76.0) Gecko/20100101 Firefox/76.0"
pma_1        | 172.20.0.6 - - [22/May/2020:15:17:54 +0000] "GET /js/vendor/sprintf.js?v=5.0.2 HTTP/1.1" 200 2845 "-" "Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:76.0) Gecko/20100101 Firefox/76.0"
pma_1        | 172.20.0.6 - - [22/May/2020:15:17:54 +0000] "GET /js/keyhandler.js?v=5.0.2 HTTP/1.1" 200 1368 "-" "Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:76.0) Gecko/20100101 Firefox/76.0"
pma_1        | 172.20.0.6 - - [22/May/2020:15:17:54 +0000] "GET /js/vendor/codemirror/lib/codemirror.js?v=5.0.2 HTTP/1.1" 200 105327 "-" "Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:76.0) Gecko/20100101 Firefox/76.0"
pma_1        | 172.20.0.6 - - [22/May/2020:15:17:54 +0000] "GET /js/ajax.js?v=5.0.2 HTTP/1.1" 200 8728 "-" "Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:76.0) Gecko/20100101 Firefox/76.0"
pma_1        | 172.20.0.6 - - [22/May/2020:15:17:54 +0000] "GET /js/messages.php?l=de&v=5.0.2 HTTP/1.1" 200 10690 "-" "Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:76.0) Gecko/20100101 Firefox/76.0"
pma_1        | 172.20.0.6 - - [22/May/2020:15:17:54 +0000] "GET /js/vendor/bootstrap/bootstrap.bundle.min.js?v=5.0.2 HTTP/1.1" 200 22593 "-" "Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:76.0) Gecko/20100101 Firefox/76.0"
pma_1        | 172.20.0.6 - - [22/May/2020:15:17:54 +0000] "GET /js/vendor/js.cookie.js?v=5.0.2 HTTP/1.1" 200 1821 "-" "Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:76.0) Gecko/20100101 Firefox/76.0"
pma_1        | 172.20.0.6 - - [22/May/2020:15:17:54 +0000] "GET /js/vendor/jquery/jquery.mousewheel.js?v=5.0.2 HTTP/1.1" 200 2846 "-" "Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:76.0) Gecko/20100101 Firefox/76.0"
pma_1        | 172.20.0.6 - - [22/May/2020:15:17:54 +0000] "GET /js/vendor/jquery/jquery.event.drag-2.2.js?v=5.0.2 HTTP/1.1" 200 4533 "-" "Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:76.0) Gecko/20100101 Firefox/76.0"
pma_1        | 172.20.0.6 - - [22/May/2020:15:17:54 +0000] "GET /js/vendor/jquery/jquery.min.js?v=5.0.2 HTTP/1.1" 200 30975 "-" "Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:76.0) Gecko/20100101 Firefox/76.0"
pma_1        | 172.20.0.6 - - [22/May/2020:15:17:54 +0000] "GET /js/vendor/jquery/jquery.validate.js?v=5.0.2 HTTP/1.1" 200 13828 "-" "Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:76.0) Gecko/20100101 Firefox/76.0"
pma_1        | 172.20.0.6 - - [22/May/2020:15:17:54 +0000] "GET /js/vendor/jquery/jquery-ui.min.js?v=5.0.2 HTTP/1.1" 200 68123 "-" "Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:76.0) Gecko/20100101 Firefox/76.0"
pma_1        | 172.20.0.6 - - [22/May/2020:15:17:54 +0000] "GET /js/whitelist.php?v=5.0.2 HTTP/1.1" 200 1087 "-" "Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:76.0) Gecko/20100101 Firefox/76.0"
pma_1        | 172.20.0.6 - - [22/May/2020:15:17:54 +0000] "GET /themes/pmahomme/img/s_error.png HTTP/1.1" 304 125 "http://pma.drupal8.test/themes/pmahomme/css/theme.css?v=5.0.2&nocache=4754296135ltr&server=1" "Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:76.0) Gecko/20100101 Firefox/76.0"
pma_1        | 172.20.0.6 - - [22/May/2020:15:17:54 +0000] "GET /themes/dot.gif HTTP/1.1" 304 124 "-" "Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:76.0) Gecko/20100101 Firefox/76.0"
pma_1        | 172.20.0.6 - - [22/May/2020:15:17:54 +0000] "GET /themes/pmahomme/img/b_help.png HTTP/1.1" 304 125 "http://pma.drupal8.test/themes/pmahomme/css/theme.css?v=5.0.2&nocache=4754296135ltr&server=1" "Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:76.0) Gecko/20100101 Firefox/76.0"
pma_1        | 127.0.0.1 - - [22/May/2020:15:18:00 +0000] "OPTIONS * HTTP/1.0" 200 126 "-" "Apache/2.4.38 (Debian) PHP/7.4.4 (internal dummy connection)"
pma_1        | 127.0.0.1 - - [22/May/2020:15:18:01 +0000] "OPTIONS * HTTP/1.0" 200 126 "-" "Apache/2.4.38 (Debian) PHP/7.4.4 (internal dummy connection)"
pma_1        | 127.0.0.1 - - [22/May/2020:15:18:02 +0000] "OPTIONS * HTTP/1.0" 200 126 "-" "Apache/2.4.38 (Debian) PHP/7.4.4 (internal dummy connection)"
pma_1        | 172.20.0.6 - - [22/May/2020:15:18:05 +0000] "GET / HTTP/1.1" 200 16323 "-" "Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:76.0) Gecko/20100101 Firefox/76.0"
pma_1        | 172.20.0.6 - - [22/May/2020:15:18:06 +0000] "GET /js/vendor/codemirror/lib/codemirror.css?v=5.0.2 HTTP/1.1" 200 2824 "-" "Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:76.0) Gecko/20100101 Firefox/76.0"
pma_1        | 172.20.0.6 - - [22/May/2020:15:18:06 +0000] "GET /js/vendor/codemirror/addon/hint/show-hint.css?v=5.0.2 HTTP/1.1" 200 604 "-" "Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:76.0) Gecko/20100101 Firefox/76.0"
pma_1        | 172.20.0.6 - - [22/May/2020:15:18:06 +0000] "GET /themes/pmahomme/css/printview.css?v=5.0.2 HTTP/1.1" 200 928 "-" "Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:76.0) Gecko/20100101 Firefox/76.0"
pma_1        | 172.20.0.6 - - [22/May/2020:15:18:06 +0000] "GET /js/vendor/codemirror/addon/lint/lint.css?v=5.0.2 HTTP/1.1" 200 1548 "-" "Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:76.0) Gecko/20100101 Firefox/76.0"
pma_1        | 172.20.0.6 - - [22/May/2020:15:18:06 +0000] "GET /themes/pmahomme/jquery/jquery-ui.css HTTP/1.1" 200 8768 "-" "Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:76.0) Gecko/20100101 Firefox/76.0"
pma_1        | 172.20.0.6 - - [22/May/2020:15:18:06 +0000] "GET /js/vendor/jquery/jquery-migrate.js?v=5.0.2 HTTP/1.1" 200 6450 "-" "Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:76.0) Gecko/20100101 Firefox/76.0"
pma_1        | 172.20.0.6 - - [22/May/2020:15:18:06 +0000] "GET /themes/pmahomme/css/theme.css?v=5.0.2&nocache=6344456820ltr&server=1 HTTP/1.1" 200 20543 "-" "Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:76.0) Gecko/20100101 Firefox/76.0"
pma_1        | 172.20.0.6 - - [22/May/2020:15:18:06 +0000] "GET /js/ajax.js?v=5.0.2 HTTP/1.1" 200 8728 "-" "Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:76.0) Gecko/20100101 Firefox/76.0"
pma_1        | 172.20.0.6 - - [22/May/2020:15:18:06 +0000] "GET /js/vendor/sprintf.js?v=5.0.2 HTTP/1.1" 200 2845 "-" "Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:76.0) Gecko/20100101 Firefox/76.0"
pma_1        | 172.20.0.6 - - [22/May/2020:15:18:06 +0000] "GET /js/keyhandler.js?v=5.0.2 HTTP/1.1" 200 1368 "-" "Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:76.0) Gecko/20100101 Firefox/76.0"
pma_1        | 172.20.0.6 - - [22/May/2020:15:18:06 +0000] "GET /js/vendor/jquery/jquery.mousewheel.js?v=5.0.2 HTTP/1.1" 200 2846 "-" "Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:76.0) Gecko/20100101 Firefox/76.0"
pma_1        | 172.20.0.6 - - [22/May/2020:15:18:06 +0000] "GET /js/vendor/jquery/jquery.event.drag-2.2.js?v=5.0.2 HTTP/1.1" 200 4533 "-" "Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:76.0) Gecko/20100101 Firefox/76.0"
pma_1        | 172.20.0.6 - - [22/May/2020:15:18:06 +0000] "GET /js/vendor/js.cookie.js?v=5.0.2 HTTP/1.1" 200 1821 "-" "Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:76.0) Gecko/20100101 Firefox/76.0"
pma_1        | 172.20.0.6 - - [22/May/2020:15:18:06 +0000] "GET /js/vendor/bootstrap/bootstrap.bundle.min.js?v=5.0.2 HTTP/1.1" 200 22593 "-" "Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:76.0) Gecko/20100101 Firefox/76.0"
pma_1        | 172.20.0.6 - - [22/May/2020:15:18:06 +0000] "GET /js/vendor/jquery/jquery.ba-hashchange-1.3.js?v=5.0.2 HTTP/1.1" 200 5629 "-" "Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:76.0) Gecko/20100101 Firefox/76.0"
pma_1        | 172.20.0.6 - - [22/May/2020:15:18:06 +0000] "GET /js/vendor/jquery/jquery-ui-timepicker-addon.js?v=5.0.2 HTTP/1.1" 200 19227 "-" "Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:76.0) Gecko/20100101 Firefox/76.0"
pma_1        | 172.20.0.6 - - [22/May/2020:15:18:06 +0000] "GET /js/vendor/jquery/jquery.validate.js?v=5.0.2 HTTP/1.1" 200 13828 "-" "Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:76.0) Gecko/20100101 Firefox/76.0"
pma_1        | 172.20.0.6 - - [22/May/2020:15:18:06 +0000] "GET /js/vendor/jquery/jquery.min.js?v=5.0.2 HTTP/1.1" 200 30975 "-" "Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:76.0) Gecko/20100101 Firefox/76.0"
pma_1        | 172.20.0.6 - - [22/May/2020:15:18:06 +0000] "GET /js/vendor/jquery/jquery.debounce-1.0.5.js?v=5.0.2 HTTP/1.1" 200 823 "-" "Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:76.0) Gecko/20100101 Firefox/76.0"
pma_1        | 172.20.0.6 - - [22/May/2020:15:18:06 +0000] "GET /js/menu_resizer.js?v=5.0.2 HTTP/1.1" 200 2584 "-" "Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:76.0) Gecko/20100101 Firefox/76.0"
pma_1        | 172.20.0.6 - - [22/May/2020:15:18:06 +0000] "GET /js/cross_framing_protection.js?v=5.0.2 HTTP/1.1" 200 593 "-" "Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:76.0) Gecko/20100101 Firefox/76.0"
pma_1        | 172.20.0.6 - - [22/May/2020:15:18:06 +0000] "GET /js/vendor/jquery/jquery-ui.min.js?v=5.0.2 HTTP/1.1" 200 68123 "-" "Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:76.0) Gecko/20100101 Firefox/76.0"
portainer_1  | 2020/05/22 15:16:38 server: Reverse tunnelling enabled
portainer_1  | 2020/05/22 15:16:38 server: Fingerprint c1:b4:66:64:bb:9d:f0:e4:5f:e2:04:6f:55:22:9f:7f
portainer_1  | 2020/05/22 15:16:38 server: Listening on 0.0.0.0:8000...
portainer_1  | 2020/05/22 15:16:38 Starting Portainer 1.23.2 on :9000
portainer_1  | 2020/05/22 15:16:38 [DEBUG] [chisel, monitoring] [check_interval_seconds: 10.000000] [message: starting tunnel management process]
pma_1        | 172.20.0.6 - - [22/May/2020:15:18:06 +0000] "GET /js/error_report.js?v=5.0.2 HTTP/1.1" 200 2995 "-" "Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:76.0) Gecko/20100101 Firefox/76.0"
pma_1        | 172.20.0.6 - - [22/May/2020:15:18:06 +0000] "GET /js/vendor/tracekit.js?v=5.0.2 HTTP/1.1" 200 11678 "-" "Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:76.0) Gecko/20100101 Firefox/76.0"
pma_1        | 172.20.0.6 - - [22/May/2020:15:18:06 +0000] "GET /js/config.js?v=5.0.2 HTTP/1.1" 200 7105 "-" "Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:76.0) Gecko/20100101 Firefox/76.0"
pma_1        | 172.20.0.6 - - [22/May/2020:15:18:06 +0000] "GET /js/doclinks.js?v=5.0.2 HTTP/1.1" 200 4048 "-" "Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:76.0) Gecko/20100101 Firefox/76.0"
pma_1        | 172.20.0.6 - - [22/May/2020:15:18:06 +0000] "GET /js/rte.js?v=5.0.2 HTTP/1.1" 200 8800 "-" "Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:76.0) Gecko/20100101 Firefox/76.0"
pma_1        | 172.20.0.6 - - [22/May/2020:15:18:06 +0000] "GET /js/indexes.js?v=5.0.2 HTTP/1.1" 200 6805 "-" "Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:76.0) Gecko/20100101 Firefox/76.0"
pma_1        | 172.20.0.6 - - [22/May/2020:15:18:06 +0000] "GET /js/navigation.js?v=5.0.2 HTTP/1.1" 200 12752 "-" "Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:76.0) Gecko/20100101 Firefox/76.0"
pma_1        | 172.20.0.6 - - [22/May/2020:15:18:06 +0000] "GET /js/whitelist.php?v=5.0.2 HTTP/1.1" 200 1087 "-" "Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:76.0) Gecko/20100101 Firefox/76.0"
pma_1        | 172.20.0.6 - - [22/May/2020:15:18:06 +0000] "GET /js/functions.js?v=5.0.2 HTTP/1.1" 200 42000 "-" "Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:76.0) Gecko/20100101 Firefox/76.0"
pma_1        | 172.20.0.6 - - [22/May/2020:15:18:06 +0000] "GET /js/messages.php?l=de&v=5.0.2 HTTP/1.1" 200 10690 "-" "Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:76.0) Gecko/20100101 Firefox/76.0"
pma_1        | 172.20.0.6 - - [22/May/2020:15:18:06 +0000] "GET /js/shortcuts_handler.js?v=5.0.2 HTTP/1.1" 200 1177 "-" "Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:76.0) Gecko/20100101 Firefox/76.0"
pma_1        | 172.20.0.6 - - [22/May/2020:15:18:06 +0000] "GET /js/page_settings.js?v=5.0.2 HTTP/1.1" 200 934 "-" "Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:76.0) Gecko/20100101 Firefox/76.0"
pma_1        | 172.20.0.6 - - [22/May/2020:15:18:06 +0000] "GET /js/common.js?v=5.0.2 HTTP/1.1" 200 1739 "-" "Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:76.0) Gecko/20100101 Firefox/76.0"
pma_1        | 172.20.0.6 - - [22/May/2020:15:18:06 +0000] "GET /js/drag_drop_import.js?v=5.0.2 HTTP/1.1" 200 3901 "-" "Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:76.0) Gecko/20100101 Firefox/76.0"
pma_1        | 172.20.0.6 - - [22/May/2020:15:18:06 +0000] "GET /js/vendor/codemirror/addon/runmode/runmode.js?v=5.0.2 HTTP/1.1" 200 1335 "-" "Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:76.0) Gecko/20100101 Firefox/76.0"
pma_1        | 172.20.0.6 - - [22/May/2020:15:18:06 +0000] "GET /js/vendor/codemirror/addon/hint/show-hint.js?v=5.0.2 HTTP/1.1" 200 5233 "-" "Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:76.0) Gecko/20100101 Firefox/76.0"
pma_1        | 172.20.0.6 - - [22/May/2020:15:18:06 +0000] "GET /js/vendor/codemirror/addon/hint/sql-hint.js?v=5.0.2 HTTP/1.1" 200 3035 "-" "Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:76.0) Gecko/20100101 Firefox/76.0"
pma_1        | 172.20.0.6 - - [22/May/2020:15:18:06 +0000] "GET /js/vendor/codemirror/addon/lint/lint.js?v=5.0.2 HTTP/1.1" 200 2878 "-" "Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:76.0) Gecko/20100101 Firefox/76.0"
pma_1        | 172.20.0.6 - - [22/May/2020:15:18:06 +0000] "GET /js/codemirror/addon/lint/sql-lint.js?v=5.0.2 HTTP/1.1" 200 754 "-" "Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:76.0) Gecko/20100101 Firefox/76.0"
pma_1        | 172.20.0.6 - - [22/May/2020:15:18:06 +0000] "GET /js/vendor/codemirror/mode/sql/sql.js?v=5.0.2 HTTP/1.1" 200 13581 "-" "Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:76.0) Gecko/20100101 Firefox/76.0"
pma_1        | 172.20.0.6 - - [22/May/2020:15:18:06 +0000] "GET /js/console.js?v=5.0.2 HTTP/1.1" 200 10714 "-" "Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:76.0) Gecko/20100101 Firefox/76.0"
pma_1        | 172.20.0.6 - - [22/May/2020:15:18:06 +0000] "GET /js/vendor/codemirror/lib/codemirror.js?v=5.0.2 HTTP/1.1" 200 105327 "-" "Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:76.0) Gecko/20100101 Firefox/76.0"
pma_1        | 172.20.0.6 - - [22/May/2020:15:18:06 +0000] "GET /themes/pmahomme/img/logo_left.png HTTP/1.1" 304 125 "-" "Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:76.0) Gecko/20100101 Firefox/76.0"
pma_1        | 172.20.0.6 - - [22/May/2020:15:18:07 +0000] "GET /themes/dot.gif HTTP/1.1" 304 124 "-" "Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:76.0) Gecko/20100101 Firefox/76.0"
pma_1        | 172.20.0.6 - - [22/May/2020:15:18:07 +0000] "GET /themes/pmahomme/img/left_nav_bg.png HTTP/1.1" 304 124 "http://pma.drupal8.test/themes/pmahomme/css/theme.css?v=5.0.2&nocache=6344456820ltr&server=1" "Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:76.0) Gecko/20100101 Firefox/76.0"
pma_1        | 172.20.0.6 - - [22/May/2020:15:18:07 +0000] "GET /themes/pmahomme/img/b_sqlhelp.png HTTP/1.1" 304 125 "http://pma.drupal8.test/themes/pmahomme/css/theme.css?v=5.0.2&nocache=6344456820ltr&server=1" "Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:76.0) Gecko/20100101 Firefox/76.0"
pma_1        | 172.20.0.6 - - [22/May/2020:15:18:07 +0000] "GET /themes/pmahomme/img/b_docs.png HTTP/1.1" 304 125 "http://pma.drupal8.test/themes/pmahomme/css/theme.css?v=5.0.2&nocache=6344456820ltr&server=1" "Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:76.0) Gecko/20100101 Firefox/76.0"
pma_1        | 172.20.0.6 - - [22/May/2020:15:18:07 +0000] "GET /themes/pmahomme/img/b_home.png HTTP/1.1" 304 125 "http://pma.drupal8.test/themes/pmahomme/css/theme.css?v=5.0.2&nocache=6344456820ltr&server=1" "Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:76.0) Gecko/20100101 Firefox/76.0"
pma_1        | 172.20.0.6 - - [22/May/2020:15:18:07 +0000] "GET /themes/pmahomme/img/s_loggoff.png HTTP/1.1" 304 125 "http://pma.drupal8.test/themes/pmahomme/css/theme.css?v=5.0.2&nocache=6344456820ltr&server=1" "Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:76.0) Gecko/20100101 Firefox/76.0"
pma_1        | 172.20.0.6 - - [22/May/2020:15:18:07 +0000] "GET /themes/pmahomme/img/s_cog.png HTTP/1.1" 304 125 "http://pma.drupal8.test/themes/pmahomme/css/theme.css?v=5.0.2&nocache=6344456820ltr&server=1" "Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:76.0) Gecko/20100101 Firefox/76.0"
pma_1        | 172.20.0.6 - - [22/May/2020:15:18:07 +0000] "GET /themes/pmahomme/img/s_reload.png HTTP/1.1" 304 125 "http://pma.drupal8.test/themes/pmahomme/css/theme.css?v=5.0.2&nocache=6344456820ltr&server=1" "Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:76.0) Gecko/20100101 Firefox/76.0"
pma_1        | 172.20.0.6 - - [22/May/2020:15:18:07 +0000] "GET /themes/pmahomme/img/s_db.png HTTP/1.1" 304 125 "http://pma.drupal8.test/themes/pmahomme/css/theme.css?v=5.0.2&nocache=6344456820ltr&server=1" "Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:76.0) Gecko/20100101 Firefox/76.0"
pma_1        | 172.20.0.6 - - [22/May/2020:15:18:07 +0000] "GET /themes/pmahomme/img/b_plus.png HTTP/1.1" 304 124 "http://pma.drupal8.test/themes/pmahomme/css/theme.css?v=5.0.2&nocache=6344456820ltr&server=1" "Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:76.0) Gecko/20100101 Firefox/76.0"
pma_1        | 172.20.0.6 - - [22/May/2020:15:18:07 +0000] "GET /themes/pmahomme/img/s_link.png HTTP/1.1" 304 125 "http://pma.drupal8.test/themes/pmahomme/css/theme.css?v=5.0.2&nocache=6344456820ltr&server=1" "Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:76.0) Gecko/20100101 Firefox/76.0"
pma_1        | 172.20.0.6 - - [22/May/2020:15:18:07 +0000] "GET /themes/pmahomme/img/s_host.png HTTP/1.1" 304 125 "http://pma.drupal8.test/themes/pmahomme/css/theme.css?v=5.0.2&nocache=6344456820ltr&server=1" "Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:76.0) Gecko/20100101 Firefox/76.0"
pma_1        | 172.20.0.6 - - [22/May/2020:15:18:07 +0000] "GET /themes/pmahomme/img/b_sql.png HTTP/1.1" 304 125 "http://pma.drupal8.test/themes/pmahomme/css/theme.css?v=5.0.2&nocache=6344456820ltr&server=1" "Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:76.0) Gecko/20100101 Firefox/76.0"
pma_1        | 172.20.0.6 - - [22/May/2020:15:18:07 +0000] "GET /themes/pmahomme/img/b_export.png HTTP/1.1" 304 125 "http://pma.drupal8.test/themes/pmahomme/css/theme.css?v=5.0.2&nocache=6344456820ltr&server=1" "Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:76.0) Gecko/20100101 Firefox/76.0"
pma_1        | 172.20.0.6 - - [22/May/2020:15:18:07 +0000] "GET /themes/pmahomme/img/s_status.png HTTP/1.1" 304 125 "http://pma.drupal8.test/themes/pmahomme/css/theme.css?v=5.0.2&nocache=6344456820ltr&server=1" "Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:76.0) Gecko/20100101 Firefox/76.0"
pma_1        | 172.20.0.6 - - [22/May/2020:15:18:07 +0000] "GET /themes/pmahomme/img/b_tblops.png HTTP/1.1" 304 125 "http://pma.drupal8.test/themes/pmahomme/css/theme.css?v=5.0.2&nocache=6344456820ltr&server=1" "Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:76.0) Gecko/20100101 Firefox/76.0"
pma_1        | 172.20.0.6 - - [22/May/2020:15:18:07 +0000] "GET /themes/pmahomme/img/s_asci.png HTTP/1.1" 304 124 "http://pma.drupal8.test/themes/pmahomme/css/theme.css?v=5.0.2&nocache=6344456820ltr&server=1" "Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:76.0) Gecko/20100101 Firefox/76.0"
pma_1        | 172.20.0.6 - - [22/May/2020:15:18:07 +0000] "GET /themes/pmahomme/img/b_import.png HTTP/1.1" 304 125 "http://pma.drupal8.test/themes/pmahomme/css/theme.css?v=5.0.2&nocache=6344456820ltr&server=1" "Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:76.0) Gecko/20100101 Firefox/76.0"
pma_1        | 172.20.0.6 - - [22/May/2020:15:18:07 +0000] "GET /themes/pmahomme/img/s_vars.png HTTP/1.1" 304 125 "http://pma.drupal8.test/themes/pmahomme/css/theme.css?v=5.0.2&nocache=6344456820ltr&server=1" "Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:76.0) Gecko/20100101 Firefox/76.0"
pma_1        | 172.20.0.6 - - [22/May/2020:15:18:07 +0000] "GET /themes/pmahomme/img/b_plugin.png HTTP/1.1" 304 125 "http://pma.drupal8.test/themes/pmahomme/css/theme.css?v=5.0.2&nocache=6344456820ltr&server=1" "Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:76.0) Gecko/20100101 Firefox/76.0"
pma_1        | 172.20.0.6 - - [22/May/2020:15:18:07 +0000] "GET /themes/pmahomme/img/s_lang.png HTTP/1.1" 304 125 "http://pma.drupal8.test/themes/pmahomme/css/theme.css?v=5.0.2&nocache=6344456820ltr&server=1" "Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:76.0) Gecko/20100101 Firefox/76.0"
pma_1        | 172.20.0.6 - - [22/May/2020:15:18:07 +0000] "GET /themes/pmahomme/img/b_engine.png HTTP/1.1" 304 125 "http://pma.drupal8.test/themes/pmahomme/css/theme.css?v=5.0.2&nocache=6344456820ltr&server=1" "Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:76.0) Gecko/20100101 Firefox/76.0"
pma_1        | 172.20.0.6 - - [22/May/2020:15:18:07 +0000] "GET /themes/pmahomme/img/s_top.png HTTP/1.1" 304 124 "http://pma.drupal8.test/themes/pmahomme/css/theme.css?v=5.0.2&nocache=6344456820ltr&server=1" "Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:76.0) Gecko/20100101 Firefox/76.0"
pma_1        | 172.20.0.6 - - [22/May/2020:15:18:07 +0000] "GET /themes/pmahomme/img/console.png HTTP/1.1" 304 125 "http://pma.drupal8.test/themes/pmahomme/css/theme.css?v=5.0.2&nocache=6344456820ltr&server=1" "Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:76.0) Gecko/20100101 Firefox/76.0"
pma_1        | 172.20.0.6 - - [22/May/2020:15:18:07 +0000] "GET /themes/pmahomme/img/window-new.png HTTP/1.1" 304 125 "http://pma.drupal8.test/themes/pmahomme/css/theme.css?v=5.0.2&nocache=6344456820ltr&server=1" "Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:76.0) Gecko/20100101 Firefox/76.0"
pma_1        | 172.20.0.6 - - [22/May/2020:15:18:07 +0000] "GET /themes/pmahomme/img/s_notice.png HTTP/1.1" 304 125 "http://pma.drupal8.test/themes/pmahomme/css/theme.css?v=5.0.2&nocache=6344456820ltr&server=1" "Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:76.0) Gecko/20100101 Firefox/76.0"
pma_1        | 172.20.0.6 - - [22/May/2020:15:18:07 +0000] "GET /themes/pmahomme/img/s_theme.png HTTP/1.1" 304 125 "http://pma.drupal8.test/themes/pmahomme/css/theme.css?v=5.0.2&nocache=6344456820ltr&server=1" "Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:76.0) Gecko/20100101 Firefox/76.0"
pma_1        | 172.20.0.6 - - [22/May/2020:15:18:07 +0000] "GET /themes/pmahomme/img/b_help.png HTTP/1.1" 304 125 "http://pma.drupal8.test/themes/pmahomme/css/theme.css?v=5.0.2&nocache=6344456820ltr&server=1" "Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:76.0) Gecko/20100101 Firefox/76.0"
pma_1        | 172.20.0.6 - - [22/May/2020:15:18:07 +0000] "POST /ajax.php HTTP/1.1" 200 2092 "-" "Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:76.0) Gecko/20100101 Firefox/76.0"
pma_1        | 172.20.0.6 - - [22/May/2020:15:18:07 +0000] "GET /themes/pmahomme/img/b_more.png HTTP/1.1" 304 124 "http://pma.drupal8.test/themes/pmahomme/css/theme.css?v=5.0.2&nocache=6344456820ltr&server=1" "Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:76.0) Gecko/20100101 Firefox/76.0"
pma_1        | 172.20.0.6 - - [22/May/2020:15:18:07 +0000] "POST /navigation.php?ajax_request=1 HTTP/1.1" 200 2656 "-" "Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:76.0) Gecko/20100101 Firefox/76.0"
pma_1        | 172.20.0.6 - - [22/May/2020:15:18:07 +0000] "POST /ajax.php HTTP/1.1" 200 2186 "-" "Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:76.0) Gecko/20100101 Firefox/76.0"
pma_1        | 172.20.0.6 - - [22/May/2020:15:18:08 +0000] "POST /ajax.php HTTP/1.1" 200 2083 "-" "Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:76.0) Gecko/20100101 Firefox/76.0"
pma_1        | 172.20.0.6 - - [22/May/2020:15:18:08 +0000] "POST /version_check.php HTTP/1.1" 200 780 "-" "Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:76.0) Gecko/20100101 Firefox/76.0"
pma_1        | 127.0.0.1 - - [22/May/2020:15:18:13 +0000] "OPTIONS * HTTP/1.0" 200 126 "-" "Apache/2.4.38 (Debian) PHP/7.4.4 (internal dummy connection)"
pma_1        | 172.20.0.6 - - [22/May/2020:15:18:42 +0000] "GET /themes/pmahomme/img/ajax_clock_small.gif HTTP/1.1" 304 125 "http://pma.drupal8.test/themes/pmahomme/css/theme.css?v=5.0.2&nocache=6344456820ltr&server=1" "Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:76.0) Gecko/20100101 Firefox/76.0"
pma_1        | 172.20.0.6 - - [22/May/2020:15:18:42 +0000] "GET /db_structure.php?server=1&db=drupal&ajax_request=true&ajax_page_request=true&_nocache=1590160721721370074&token=46244c69354061492e7669785571487d HTTP/1.1" 200 49509 "-" "Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:76.0) Gecko/20100101 Firefox/76.0"
pma_1        | 172.20.0.6 - - [22/May/2020:15:18:46 +0000] "GET /themes/pmahomme/img/b_search.png HTTP/1.1" 304 125 "http://pma.drupal8.test/themes/pmahomme/css/theme.css?v=5.0.2&nocache=6344456820ltr&server=1" "Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:76.0) Gecko/20100101 Firefox/76.0"
pma_1        | 172.20.0.6 - - [22/May/2020:15:18:46 +0000] "GET /themes/pmahomme/img/b_triggers.png HTTP/1.1" 304 125 "http://pma.drupal8.test/themes/pmahomme/css/theme.css?v=5.0.2&nocache=6344456820ltr&server=1" "Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:76.0) Gecko/20100101 Firefox/76.0"
pma_1        | 172.20.0.6 - - [22/May/2020:15:18:46 +0000] "GET /themes/pmahomme/img/b_props.png HTTP/1.1" 304 125 "http://pma.drupal8.test/themes/pmahomme/css/theme.css?v=5.0.2&nocache=6344456820ltr&server=1" "Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:76.0) Gecko/20100101 Firefox/76.0"
pma_1        | 172.20.0.6 - - [22/May/2020:15:18:46 +0000] "GET /themes/pmahomme/img/b_events.png HTTP/1.1" 304 125 "http://pma.drupal8.test/themes/pmahomme/css/theme.css?v=5.0.2&nocache=6344456820ltr&server=1" "Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:76.0) Gecko/20100101 Firefox/76.0"
pma_1        | 172.20.0.6 - - [22/May/2020:15:18:46 +0000] "GET /themes/pmahomme/img/b_routines.png HTTP/1.1" 304 125 "http://pma.drupal8.test/themes/pmahomme/css/theme.css?v=5.0.2&nocache=6344456820ltr&server=1" "Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:76.0) Gecko/20100101 Firefox/76.0"
pma_1        | 172.20.0.6 - - [22/May/2020:15:18:46 +0000] "GET /themes/pmahomme/img/b_relations.png HTTP/1.1" 304 124 "http://pma.drupal8.test/themes/pmahomme/css/theme.css?v=5.0.2&nocache=6344456820ltr&server=1" "Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:76.0) Gecko/20100101 Firefox/76.0"
pma_1        | 172.20.0.6 - - [22/May/2020:15:18:46 +0000] "GET /themes/pmahomme/img/arrow_ltr.png HTTP/1.1" 304 124 "-" "Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:76.0) Gecko/20100101 Firefox/76.0"
pma_1        | 172.20.0.6 - - [22/May/2020:15:18:47 +0000] "GET /navigation.php?ajax_request=1&aPath=cm9vdA%3D%3D.ZHJ1cGFs&vPath=cm9vdA%3D%3D.ZHJ1cGFs&pos=0&pos2_name=&pos2_value=&searchClause=&searchClause2=&_nocache=1590160727047364061&token=46244c69354061492e7669785571487d HTTP/1.1" 200 4738 "-" "Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:76.0) Gecko/20100101 Firefox/76.0"
pma_1        | 172.20.0.6 - - [22/May/2020:15:18:47 +0000] "GET /themes/pmahomme/img/s_asc.png HTTP/1.1" 304 124 "http://pma.drupal8.test/themes/pmahomme/css/theme.css?v=5.0.2&nocache=6344456820ltr&server=1" "Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:76.0) Gecko/20100101 Firefox/76.0"
pma_1        | 172.20.0.6 - - [22/May/2020:15:18:47 +0000] "GET /themes/pmahomme/img/b_empty.png HTTP/1.1" 304 125 "http://pma.drupal8.test/themes/pmahomme/css/theme.css?v=5.0.2&nocache=6344456820ltr&server=1" "Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:76.0) Gecko/20100101 Firefox/76.0"
pma_1        | 172.20.0.6 - - [22/May/2020:15:18:47 +0000] "GET /themes/pmahomme/img/b_browse.png HTTP/1.1" 304 125 "http://pma.drupal8.test/themes/pmahomme/css/theme.css?v=5.0.2&nocache=6344456820ltr&server=1" "Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:76.0) Gecko/20100101 Firefox/76.0"
pma_1        | 172.20.0.6 - - [22/May/2020:15:18:47 +0000] "GET /themes/pmahomme/img/b_select.png HTTP/1.1" 304 125 "http://pma.drupal8.test/themes/pmahomme/css/theme.css?v=5.0.2&nocache=6344456820ltr&server=1" "Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:76.0) Gecko/20100101 Firefox/76.0"
pma_1        | 172.20.0.6 - - [22/May/2020:15:18:47 +0000] "GET /themes/pmahomme/img/b_no_favorite.png HTTP/1.1" 304 125 "http://pma.drupal8.test/themes/pmahomme/css/theme.css?v=5.0.2&nocache=6344456820ltr&server=1" "Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:76.0) Gecko/20100101 Firefox/76.0"
pma_1        | 172.20.0.6 - - [22/May/2020:15:18:47 +0000] "GET /themes/pmahomme/img/b_insrow.png HTTP/1.1" 304 124 "http://pma.drupal8.test/themes/pmahomme/css/theme.css?v=5.0.2&nocache=6344456820ltr&server=1" "Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:76.0) Gecko/20100101 Firefox/76.0"
pma_1        | 172.20.0.6 - - [22/May/2020:15:18:47 +0000] "GET /themes/pmahomme/img/b_drop.png HTTP/1.1" 304 125 "http://pma.drupal8.test/themes/pmahomme/css/theme.css?v=5.0.2&nocache=6344456820ltr&server=1" "Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:76.0) Gecko/20100101 Firefox/76.0"
pma_1        | 172.20.0.6 - - [22/May/2020:15:18:47 +0000] "GET /themes/pmahomme/img/bd_select.png HTTP/1.1" 304 125 "http://pma.drupal8.test/themes/pmahomme/css/theme.css?v=5.0.2&nocache=6344456820ltr&server=1" "Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:76.0) Gecko/20100101 Firefox/76.0"
pma_1        | 172.20.0.6 - - [22/May/2020:15:18:47 +0000] "GET /themes/pmahomme/img/bd_browse.png HTTP/1.1" 304 125 "http://pma.drupal8.test/themes/pmahomme/css/theme.css?v=5.0.2&nocache=6344456820ltr&server=1" "Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:76.0) Gecko/20100101 Firefox/76.0"
pma_1        | 172.20.0.6 - - [22/May/2020:15:18:47 +0000] "GET /themes/pmahomme/img/bd_empty.png HTTP/1.1" 304 125 "http://pma.drupal8.test/themes/pmahomme/css/theme.css?v=5.0.2&nocache=6344456820ltr&server=1" "Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:76.0) Gecko/20100101 Firefox/76.0"
pma_1        | 172.20.0.6 - - [22/May/2020:15:18:47 +0000] "GET /themes/pmahomme/img/b_tblanalyse.png HTTP/1.1" 304 124 "http://pma.drupal8.test/themes/pmahomme/css/theme.css?v=5.0.2&nocache=6344456820ltr&server=1" "Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:76.0) Gecko/20100101 Firefox/76.0"
pma_1        | 172.20.0.6 - - [22/May/2020:15:18:47 +0000] "GET /themes/pmahomme/img/b_table_add.png HTTP/1.1" 304 125 "http://pma.drupal8.test/themes/pmahomme/css/theme.css?v=5.0.2&nocache=6344456820ltr&server=1" "Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:76.0) Gecko/20100101 Firefox/76.0"
pma_1        | 172.20.0.6 - - [22/May/2020:15:18:47 +0000] "GET /themes/pmahomme/img/b_print.png HTTP/1.1" 304 125 "http://pma.drupal8.test/themes/pmahomme/css/theme.css?v=5.0.2&nocache=6344456820ltr&server=1" "Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:76.0) Gecko/20100101 Firefox/76.0"
pma_1        | 172.20.0.6 - - [22/May/2020:15:18:49 +0000] "GET /themes/pmahomme/img/b_group.png HTTP/1.1" 304 125 "http://pma.drupal8.test/themes/pmahomme/css/theme.css?v=5.0.2&nocache=6344456820ltr&server=1" "Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:76.0) Gecko/20100101 Firefox/76.0"
pma_1        | 172.20.0.6 - - [22/May/2020:15:18:49 +0000] "GET /themes/pmahomme/img/b_minus.png HTTP/1.1" 304 124 "http://pma.drupal8.test/themes/pmahomme/css/theme.css?v=5.0.2&nocache=6344456820ltr&server=1" "Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:76.0) Gecko/20100101 Firefox/76.0"
pma_1        | 172.20.0.6 - - [22/May/2020:15:19:38 +0000] "-" 408 0 "-" "-"
AleMadLei commented 4 years ago

@mfrosch did you ever figure out what the problem was?

mfrosch commented 4 years ago

@AleMadLei sadly not, I just switched to apache

fuegonju commented 3 years ago

I've got similar "502 Bad Gateway". My personal problem was that after restarting the containers the phpstorm listening process was still on. I've solved it : 1.-) stopping Phpstorm listening 2-) then restart containers and after that turn on Phpstorm listening again.

image

mathieuhelie commented 3 years ago

I'm experiencing the same issue, and completely disabling xdebug by re-commenting all env vars referring to it had no effect.

As additional context, it seems that some errors are correctly caught by the devel system (going to /admin/config/development/devel?demo=error displays all errors to screen AND logs them to docker logging), while errors that seem to leave the page hanging get logged to docker logging, then after a few seconds more cause the nginx bad gateway / apache white page to show up. This could be related to some FPM timeout setting.

The logs show this additional error when whitescreening: upstream prematurely closed FastCGI stdout while reading response header from upstream. I tried playing with NGINX_FASTCGI_BUFFER_SIZE but it had no effect.

ghost commented 1 year ago

LOL Stoping PHPStorm debug listen feature really helps.