# Graylog (docker) + Apache2 Reverse Proxy -\> Blank page

**URL:** https://community.graylog.org/t/graylog-docker-apache2-reverse-proxy-blank-page/10076
**Category:** Graylog Central (peer support)
**Created:** [April 23, 2019, 1:21pm UTC](https://community.graylog.org/t/graylog-docker-apache2-reverse-proxy-blank-page/10076 "2019-04-23T13:21:25Z")
**Posts on this page:** 3
**Page:** 1

<div class="post-metadata">

### Author: ![RogerSik](https://sea2.discourse-cdn.com/flex016/user_avatar/community.graylog.org/rogersik/32/4291_2.png) [@RogerSik](https://community.graylog.org/u/RogerSik)
#### Post date: [April 23, 2019, 1:21pm UTC](https://community.graylog.org/t/graylog-docker-apache2-reverse-proxy-blank-page/10076/1 "2019-04-23T13:21:25Z")

</div>

Hello,

using the default docker-compose template from [http://docs.graylog.org/en/3.0/pages/installation/docker.html](http://docs.graylog.org/en/3.0/pages/installation/docker.html) and the Apache2 HTTPS Reverse Proxy configuration from [http://docs.graylog.org/en/2.4/pages/configuration/web\_interface.html](http://docs.graylog.org/en/2.4/pages/configuration/web_interface.html) and I get a blank page with “Graylog Web Interface”. Already tried different parameters for URI\_ENDPOINT and so on.

```auto
version: '2'
services:
  # MongoDB: https://hub.docker.com/_/mongo/
  mongodb:
    image: mongo:3
  # Elasticsearch: https://www.elastic.co/guide/en/elasticsearch/reference/6.6/docker.html
  elasticsearch:
    image: docker.elastic.co/elasticsearch/elasticsearch-oss:6.6.1
    environment:
      - http.host=0.0.0.0
      - transport.host=localhost
      - network.host=0.0.0.0
      - "ES_JAVA_OPTS=-Xms512m -Xmx512m"
    ulimits:
      memlock:
        soft: -1
        hard: -1
    mem_limit: 1g
  # Graylog: https://hub.docker.com/r/graylog/graylog/
  graylog:
    image: graylog/graylog:3.0
    environment:
      # CHANGE ME (must be at least 16 characters)!
      - GRAYLOG_PASSWORD_SECRET=asdfsdaf23123asdasd65
      # Password: admin
      - GRAYLOG_ROOT_PASSWORD_SHA2=8c6976e5b5410415bde908bd4dee15dfb167a9c873fc4bb8a81f6f2ab448a918
      - GRAYLOG_HTTP_EXTERNAL_URI=http://127.0.0.1:9000/
    links:
      - mongodb:mongo
      - elasticsearch
    depends_on:
      - mongodb
      - elasticsearch
    ports:
      # Graylog web interface and REST API
      - 9000:9000
      # Syslog TCP
      - 1514:1514
      # Syslog UDP
      - 1514:1514/udp
      # GELF TCP
      - 12201:12201
      # GELF UDP
      - 12201:12201/udp

```

```auto
        ServerName graylog.example.org
        ProxyRequests Off

        SSLEngine on
        SSLCertificateFile /etc/letsencrypt/live/graylog.example.org/fullchain.pem
        SSLCertificateKeyFile /etc/letsencrypt/live/graylog.example.org/privkey.pem
        Include /etc/letsencrypt/options-ssl-apache.conf

        <Proxy *>
                Order deny,allow
                Allow from all
        </Proxy>

        <Location />
                RequestHeader set X-Graylog-Server-URL "https://graylog.example.org/api/"
                ProxyPass http://127.0.0.1:9000/
                ProxyPassReverse http://127.0.0.1:9000/
        </Location>

```

Not sure what is wrong. Atleast I get a blank page and no connection error.

Greetings

---

<div class="post-metadata">

### Author: ![RogerSik](https://sea2.discourse-cdn.com/flex016/user_avatar/community.graylog.org/rogersik/32/4291_2.png) [@RogerSik](https://community.graylog.org/u/RogerSik)
#### Post date: [April 24, 2019, 11:32am UTC](https://community.graylog.org/t/graylog-docker-apache2-reverse-proxy-blank-page/10076/2 "2019-04-24T11:32:47Z")

</div>

Changed

```auto
RequestHeader set X-Graylog-Server-URL "https://graylog.example.org/api/"

```

to

```auto
RequestHeader set X-Graylog-Server-URL "https://graylog.example.org/"

```

and

```auto
      - GRAYLOG_HTTP_EXTERNAL_URI=http://127.0.0.1:9000/

```

to

```auto
      - GRAYLOG_HTTP_EXTERNAL_URI=https://graylog.example.org/

```

fixed it for me.

---

<div class="post-metadata">

### Author: ![system](https://us1.discourse-cdn.com/flex016/uploads/graylog/original/3X/c/7/c7c09c6b5099570133d6502b83f50ba4430de5b6.png) [@system](https://community.graylog.org/u/system)
#### Post date: [May 8, 2019, 11:34am UTC](https://community.graylog.org/t/graylog-docker-apache2-reverse-proxy-blank-page/10076/3 "2019-05-08T11:34:24Z")

</div>

This topic was automatically closed 14 days after the last reply. New replies are no longer allowed.
