未解析样式表,因为在严格模式下不允许非CSS MIME类型

前端之家收集整理的这篇文章主要介绍了未解析样式表,因为在严格模式下不允许非CSS MIME类型前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我在我的网站上收到以下错误
[Error] Did not parse stylesheet at 'http://test.opendialogueapproach.co.uk/wp-content/plugins/revslider/public/assets/css/settings.css?ver=5.2.5.3' because non CSS MIME types are not allowed in strict mode.

做了一些研究似乎这可能与我的Nginx配置有关,但是我的Nginx文件似乎与我在其他地方看到的结构有很大不同,所以我不确定需要哪些修改才能解决这个问题.我包括下面看起来相关的三个Nginx文件

首先是etc / Nginx中的mime.conf文件
然后是Nginx.conf,也在etc / Nginx
最后是我的网站在etc / Nginx / conf.d中的conf文件

mime.conf

types {
    text/html                             html htm shtml;
    text/css                              css;
    text/xml                              xml RSS;
    image/gif                             gif;
    image/jpeg                            jpeg jpg;
    application/x-javascript              js;
    text/plain                            txt;
    text/x-component                      htc;
    text/mathml                           mml;
    image/png                             png;
    image/svg+xml                         svg svgz;
    image/x-icon                          ico;
    image/x-jng                           jng;
    image/vnd.wap.wbmp                    wbmp;
    application/java-archive              jar war ear;
    application/mac-binhex40              hqx;
    application/pdf                       pdf;
    application/x-cocoa                   cco;
    application/x-java-archive-diff       jardiff;
    application/x-java-jnlp-file          jnlp;
    application/x-makeself                run;
    application/x-perl                    pl pm;
    application/x-pilot                   prc pdb;
    application/x-rar-compressed          rar;
    application/x-redhat-package-manager  rpm;
    application/x-sea                     sea;
    application/x-shockwave-flash         swf;
    application/x-stuffit                 sit;
    application/x-tcl                     tcl tk;
    application/x-x509-ca-cert            der pem crt;
    application/x-xpinstall               xpi;
    application/zip                       zip;
    application/octet-stream              deb;
    application/octet-stream              bin exe dll;
    application/octet-stream              dmg;
    application/octet-stream              eot;
    application/octet-stream              iso img;
    application/octet-stream              msi msp msm;
    audio/mpeg                            mp3;
    audio/ogg                             oga ogg;
    audio/wav                             wav;
    audio/x-realaudio                     ra;
    video/mp4                             mp4;
    video/mpeg                            mpeg mpg;
    video/ogg                             ogv;
    video/quicktime                       mov;
    video/webm                            webm;
    video/x-flv                           flv;
    video/x-msvideo                       avi;
    video/x-ms-wmv                        wmv;
    video/x-ms-asf                        asx asf;
    video/x-mng                           mng;
}

Nginx.conf

user www-data www-data;
pid /var/run/Nginx.pid;
worker_processes 2;
worker_rlimit_nofile 100000;

events {
    worker_connections  4096;
    include /etc/Nginx.custom.events.d/*.conf;
}

http {
    default_type application/octet-stream;

    access_log off;
    error_log  /var/log/Nginx/error.log crit;

    sendfile on;
    tcp_nopush on;

    keepalive_timeout 20;
    client_header_timeout 20;
    client_body_timeout 20;
    reset_timedout_connection on;
    send_timeout 20;

    types_hash_max_size 2048;

    gzip on;
    gzip_disable "msie6";
    gzip_proxied any;
    gzip_min_length 256;
    gzip_comp_level 4;
    gzip_types text/plain text/css application/json application/x-javascript text/xml application/xml application/xml+RSS text/javascript application/javascript text/x-js;

    server_names_hash_bucket_size 128;

    include mime.conf;
    charset UTF-8;

    open_file_cache max=100000 inactive=20s;
    open_file_cache_valid 30s;
    open_file_cache_min_uses 2;
    open_file_cache_errors on;

    server_tokens off;
    ssl_protocols TLSv1 TLSv1.1 TLSv1.2;

    include proxy.conf;
    include fcgi.conf;

    include conf.d/*.conf;
    include /etc/Nginx.custom.d/*.conf;
}

include /etc/Nginx.custom.global.d/*.conf;

网站conf文件

server {
    listen *:80;


    server_name test.opendialogueapproach.co.uk;

    access_log /var/log/Nginx/testopendialogueapproachcouk.access.log;
    error_log /var/log/Nginx/testopendialogueapproachcouk.error.log;

    root /var/www/opendialogueapproach.co.uk/test/html;
    index index.html index.htm index.PHP;

    location / {
        try_files $uri $uri/ /index.PHP?q=$request_uri;
}

location /wp-content/uploads/bp-attachments/ {
    rewrite ^.*uploads/bp-attachments/([0-9]+)/(.*) /?p=$1&bp-attachment=$2 permanent;
}



    location ~ [^/]\.PHP(/|$) {



        fastcgi_index index.PHP;
        include fcgi.conf;
        fastcgi_pass unix:/var/run/ajenti-v-PHP-fcgi-testopendialogueapproachcouk-PHP-fcgi-0.sock;
        fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name;

    }

}

解决方法

我看到消息:“没有指定输入文件.”对于所有链接
http://test.opendialogueapproach.co.uk/wp-content/plugins/revslider/public/assets/css/settings.css
http://test.opendialogueapproach.co.uk/wp-content/
http://test.opendialogueapproach.co.uk/wp-content/plugins/revslider/

好像你的站点配置文件不正确. /var/www/opendialogueapproach.co.uk/test/html/wp-content/plugins/revslider/public/assets/css/settings.css中可能不存在文件

我认为您应该在配置中更正root,或将文件上传到/var/www/opendialogueapproach.co.uk/test/html

原文链接:https://www.f2er.com/css/215760.html

猜你在找的CSS相关文章