要配置PHP錯誤日志在Caddy中,可以按照以下步驟進行:
example.com {
root /path/to/your/website
php_fastcgi unix//path/to/php-fpm.sock {
env PHP_FCGI_MAX_REQUESTS 1000
log /path/to/php/error.log
}
}
在上面的配置中,example.com
是您的網站域名,/path/to/your/website
是您網站的根目錄,unix//path/to/php-fpm.sock
是PHP-FPM的Socket路徑,/path/to/php/error.log
是您想要將PHP錯誤日志輸出的文件路徑。
sudo systemctl reload caddy
sudo chown www-data:www-data /path/to/php/error.log
sudo chmod 644 /path/to/php/error.log
sudo systemctl restart php-fpm
現在,您已經成功配置了PHP錯誤日志在Caddy中的設置。您可以通過查看/path/to/php/error.log
文件來查看PHP的錯誤日志。