docker-hackmd icon indicating copy to clipboard operation
docker-hackmd copied to clipboard

Refresh Modal show at any time

Open speamy opened this issue 6 years ago • 0 comments

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

Bildschirmfoto 2019-04-06 um 12 25 01

In the Google Chrome Console is a Error: Bildschirmfoto 2019-04-06 um 12 25 37

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;
}

speamy avatar Apr 06 '19 10:04 speamy