使用Typecho+Nginx+php-fpm加载css报错502

查看:175
本文介绍了使用Typecho+Nginx+php-fpm加载css报错502的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

问 题

网址如下:https://crazyc.cn/index.php

php-fpm使用默认配置,没有改过

nginx配置有两个
第一个

server {
        listen  80;
        server_name crazyc.cn www.crazyc.cn;
        rewrite ^/(.*)$ https://crazyc.cn permanent;
        error_log /logs/error.log;
        charset     utf-8;
        client_body_buffer_size                         512k;
        proxy_connect_timeout                           90;
        proxy_send_timeout                              90;
        proxy_read_timeout                              4000;
        proxy_buffers                                   32 4k;
        client_max_body_size 75m;
        # Load configuration files for the default server block.
        location / {
            root /var/www/html;
            index index.php index.html;
        }
        location ^~ /path {
                deny all;
        }

    }

第二个

server {
    listen       443 ssl;
    server_name crazyc.cn www.crazyc.cn;
    ssl on;
    ssl_certificate /root/.acme.sh/crazyc.cn/fullchain.cer;
    ssl_certificate_key /root/.acme.sh/crazyc.cn/crazyc.cn.key;
    ssl_protocols SSLv3 TLSv1 TLSv1.1 TLSv1.2;
    ssl_ciphers  HIGH:!ADH:!EXPORT56:RC4+RSA:+MEDIUM;
    error_log /logs/error.log;
    error_page 404 = https://crazyc.cn/404.html;
    charset     utf-8;

    client_max_body_size 75m;
        # Load configuration files for the default server block.
    location ~ \.php$ {
        root html;
        fastcgi_pass 127.0.0.1:9000;
        fastcgi_index index.php;
        fastcgi_param SCRIPT_FILENAME /var/www/html$fastcgi_script_name;
        include fastcgi_params;
    }
    location ~ .*\.(html|htm|gif|jpg|jpeg|bmp|png|ico|txt|js|css)$ {
        root /var/www/html;
        proxy_pass https://127.0.0.1:9000;
    }
}

如图所示,获取不到css,报错502,求大神指教

解决方案

location ~ .*\.(html|htm|gif|jpg|jpeg|bmp|png|ico|txt|js|css)$ {
        root /var/www/html;
        proxy_pass https://127.0.0.1:9000;
    }

改为

location ~ .*\.(html|htm|gif|jpg|jpeg|bmp|png|ico|txt|js|css)$ {
        root /var/www/html;
        proxy_pass https://127.0.0.1;
    }

静态资源不走9000端口

这篇关于使用Typecho+Nginx+php-fpm加载css报错502的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

查看全文
登录 关闭
扫码关注1秒登录
发送“验证码”获取 | 15天全站免登陆