This repository was archived by the owner on Nov 15, 2019. It is now read-only.

Description
After start initial the docker containers shows on every document the Refresh Modal at any time.

In the Google Chrome Console is a Error:

Refused to execute script from 'https://***/config' because its MIME type ('text/html') is not executable, and strict MIME type checking is enabled.
I use a Nginx Proxy:
location / {
proxy_pass http://md;
proxy_set_header X-Real-IP $remote_addr;
proxy_set_header Host $http_host;
proxy_set_header X-NginX-Proxy true;
proxy_set_header Upgrade $http_upgrade;
proxy_set_header Connection "upgrade";
proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
proxy_set_header Host $host;
proxy_http_version 1.1;
proxy_cache_bypass $http_upgrade;
proxy_redirect off;
}