使用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,求大神指教
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
将
改为
静态资源不走9000端口