哪些Nginx配置会导致php错误不提示,下面web建站小编给大家简单介绍一下具体解决方法!
正确配置方法:
复制代码server {
# server settings
...
# server block location rules
...
# php-fpm status check
location ~ ^/(status|ping)$ {
access_log off;
# php-fpm settings
fastcgi_param PHP_VALUE "error_reporting=E_ALL";
include fastcgi_params;
fastcgi_pass unix:/run/php/php7.4-fpm.sock;
}
# php error logs
location ~ \.php$ {
fastcgi_param PHP_VALUE "error_log=/var/log/nginx/php_error.log";
include fastcgi_params;
fastcgi_pass unix:/run/php/php7.4-fpm.sock;
}
# error pages
error_page 404 /404.html;
error_page 500 502 503 504 /50x.html;
# static files
location ~* \.(jpg|jpeg|gif|png|css|js|ico)$ {
expires 7d;
access_log off;
}
# disable direct access to .ht files
location ~ /\.ht {
deny all;
}
}
- 1
- 2
- 3
- 4
- 5
- 6
- 7
- 8
- 9
- 10
- 11
- 12
- 13
- 14
- 15
- 16
- 17
- 18
- 19
- 20
- 21
- 22
- 23
- 24
- 25
- 26
- 27
- 28
- 29
- 30
- 31
- 32
- 33
- 34
- 35
- 36
- 37
- 38
PS:错误输出地址:/var/log/nginx/php_error.log
上面是“Nginx配置什么原因导致php错误不提示”的全面内容,想了解更多关于 php入门 内容,请继续关注web建站教程。
当前网址:https://ipkd.cn/webs_3991.html
workflows工作流
乡村枯树黄花comfyui工作流
3D圆形玉雕图案comfyui工作流
一架令人难忘的美丽钢琴ComfyUI工作流
汗血宝马ComfyUI工作流
潜水员,珊瑚,鲸鱼,潜水艇comfyui工作流
一颗巨型的木星ComfyUI工作流
懂王特朗普3d漫画ComfyUI工作流
一座巨大的野兽派建筑漂浮在热带风景中的贫民
猜你喜欢
声明:本站提供的所有资源部分来自互联网,如果有侵犯您的版权或其他权益,请发送到邮箱:admin@ipkd.cn,我们会在看到邮件的第一时间内为您处理!