我正在寻找一种方法来单独配置 lighttpd 上的虚拟主机以显示或不显示错误和警告。
error_reporting(E_ERROR | E_WARNING | E_PARSE | E_NOTICE);
我喜欢从虚拟热点配置中实现。不是来自 php.ini。
$HTTP["host"] =~ "domain1\.com" {
server.document-root = "/home/lighttpd/domain1.com/http"
accesslog.filename = "/home/lighttpd/domain1.com/logs/access.log"
php_flag display_errors On ....???
}
如果您尝试上面的代码,则会收到以下错误
root@web:~/lighttpd# /etc/init.d/lighttpd restart
2014-02-05 11:23:54: (configfile.c.932) source: /usr/share/lighttpd/mysql_vhost.py line: 8 pos: 24 parser failed somehow near here: display_errors
2014-02-05 11:23:54: (configfile.c.932) source: /etc/lighttpd/lighttpd.conf line: 32 pos: 1 parser failed somehow near here: (EOL)
有没有其他方法可以从 lighttpd 内部与 PHP 对话?PHP 作为模块加载。它应该是一个。