Skip to content
This repository has been archived by the owner on Jun 27, 2023. It is now read-only.

MIME type ('text/html') is not a supported stylesheet MIME type, and strict MIME checking is enabled. #33

Open
JohKa opened this issue Dec 18, 2018 · 3 comments

Comments

@JohKa
Copy link

JohKa commented Dec 18, 2018

Hallo, ich benutzte Mailman mit Docker in einem Subfolder.
Für die Weiterleitung nutze ich nginx.

Leider erhalte ich beim Aufruf von Mailman die folgende Fehlermeldung:

Refused to apply style from 'https://XXX.XY/mailman/static/css/main.27ff0ba0.css' because its MIME type ('text/html') is not a supported stylesheet MIME type, and strict MIME checking is enabled.

Das Dockerfile wurde mit der Eigenschaft: Subfolder gestartet und wurde auch in der .env bzw. bei NGINX so konfiguriert.

@phiilu
Copy link
Owner

phiilu commented Feb 10, 2019

Sieht so aus als würde nginx die index.html auslieferen. Kannst du mal die nginx config hier posten?

@JohKa
Copy link
Author

JohKa commented Feb 11, 2019

server {

 listen 443 ssl http2;
        server_name XXX.YY;

        ssl_certificate /etc/letsencrypt/live/XXX.YY/fullchain.pem;
        ssl_certificate_key /etc/letsencrypt/live/XXX.YY/privkey.pem;
        ssl_trusted_certificate /etc/letsencrypt/live/XXX.YY/chain.pem;

        include snippets/ssl.conf;
        include snippets/letsencrypt.conf;
        include snippets/php-fpm.conf;

        #return 301 https://XXX.YY$request_uri;
        index index.php index.html index.htm index.nginx-debian.html;
        root /var/www/html;

        add_header X-Content-Type-Options nosniff;
location /mailman {
                proxy_pass       http://127.0.0.1:4000/;
                proxy_set_header Host      $host;
                proxy_set_header X-Real-IP $remote_addr;
#               proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
        }
}

@t0rkh
Copy link

t0rkh commented May 17, 2019

Habe exakt dasselbe Problem. Selbst mit der vorgeschlagenen Minimaleinstellung beim nginx.

Sign up for free to subscribe to this conversation on GitHub. Already have an account? Sign in.
Labels
None yet
Projects
None yet
Development

No branches or pull requests

3 participants