简体   繁体   English

nginx 不提供 css/js 图像

[英]nginx not serving css/js images

images are loading sometimes but icon and default images icons not displayed , im beginner how to fix this issue it drives me crazy, there is no config files in etc/nginx/conf.d only my main nginx config file in my server which found here etc/nginx/nginx.config i hope somone can help me please图像有时正在加载,但图标和默认图像图标未显示,我是初学者如何解决这个问题它让我发疯,etc/nginx/conf.d 中没有配置文件,只有我的服务器中的主要 nginx 配置文件可以在这里找到etc/nginx/nginx.config 我希望有人可以帮助我

my config file我的配置文件

    user nginx;
worker_processes auto;
error_log /var/log/nginx/error.log;
pid /run/nginx.pid;

# Load dynamic modules. See /usr/share/doc/nginx/README.dynamic.
include /usr/share/nginx/modules/*.conf;

events {
    worker_connections 1024;
}

http {
    log_format  main  '$remote_addr - $remote_user [$time_local] "$request" '
                      '$status $body_bytes_sent "$http_referer" '
                      '"$http_user_agent" "$http_x_forwarded_for"';

    access_log  /var/log/nginx/access.log  main;

    sendfile            on;
    tcp_nopush          on;
    tcp_nodelay         on;
    keepalive_timeout   65;
    types_hash_max_size 2048;

    client_max_body_size 50M;

    include             /etc/nginx/mime.types;
    default_type        application/octet-stream;


    # Load modular configuration files from the /etc/nginx/conf.d directory.
    # See http://nginx.org/en/docs/ngx_core_module.html#include
    # for more information.
    include /etc/nginx/conf.d/*.conf;

    server {
        listen       80 default_server;
        listen       [::]:80 default_server;
        server_name  _;
        root         /usr/share/nginx/html;

        # Load configuration files for the default server block.
        include /etc/nginx/default.d/*.conf;

        location / {
        }

        error_page 404 /404.html;
            location = /40x.html {
        }

        error_page 500 502 503 504 /50x.html;
            location = /50x.html {
        }
    }
        server {
        server_name xxx.com www.xxx.com;
        listen serverip;
        root /home/xxx/public_html;
        index index.html index.htm index.php;
        access_log /var/log/virtualmin/xxx_access_log;
        error_log /var/log/virtualmin/xxx_error_log;
        fastcgi_param GATEWAY_INTERFACE CGI/1.1;
        fastcgi_param SERVER_SOFTWARE nginx;
        fastcgi_param QUERY_STRING $query_string;
        fastcgi_param REQUEST_METHOD $request_method;
        fastcgi_param CONTENT_TYPE $content_type;
        fastcgi_param CONTENT_LENGTH $content_length;
        fastcgi_param SCRIPT_FILENAME /home/xxx/public_html$fastcgi_script_name;
        fastcgi_param SCRIPT_NAME $fastcgi_script_name;
        fastcgi_param REQUEST_URI $request_uri;
        fastcgi_param DOCUMENT_URI $document_uri;
        fastcgi_param DOCUMENT_ROOT /home/xxx/public_html;
        fastcgi_param SERVER_PROTOCOL $server_protocol;
        fastcgi_param REMOTE_ADDR $remote_addr;
        fastcgi_param REMOTE_PORT $remote_port;
        fastcgi_param SERVER_ADDR $server_addr;
        fastcgi_param SERVER_PORT $server_port;
        fastcgi_param SERVER_NAME $server_name;
        fastcgi_param HTTPS $https;
        location / {
         try_files $uri $uri/ /index.php?$args;
            index index.php index.cgi index.pl index.html index.xhtml index.htm index.shtml;
            fastcgi_index index.php;
            include fastcgi.conf;
            include fastcgi_params;

            fastcgi_pass unix:/var/php-nginx/xxx.sock/socket;

        }
        listen serverip default ssl;
        ssl_certificate /home/xxx/ssl.cert;
        ssl_certificate_key /home/xxx/ssl.key;
    }
}

i appreciate any help我感谢任何帮助

You have one location that sends all requests to PHP.你有一个location发送到PHP的所有请求。 You are not serving static files (such as js/css) with Nginx.您没有使用 Nginx 提供静态文件(例如 js/css)。

The usual PHP configuration contains two location blocks.通常的 PHP 配置包含两个location块。 One to process URIs which end with .php and one to process everything else as a static file.一种用于处理以.php结尾的 URI,另一种用于将其他所有内容作为静态文件处理。

For example:例如:

location / {
    try_files $uri $uri/ /index.php?$args;
    index index.php index.cgi index.pl index.html index.xhtml index.htm index.shtml;
}
location ~ \.php$ {
    try_files $uri =404;

    include fastcgi.conf;
    include fastcgi_params;

    fastcgi_pass unix:/var/php-nginx/xxx.sock/socket;
}

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM