(18:41:10) Gabrys: is there a reason why 500-error pages I get are not customizable?
(18:41:24) Gabrys: my configuration is PHP run from spawn-fcgi
(18:42:22) Gabrys: it does not work for me, works for 404, not for 500, unfortunately
(18:43:36) Gabrys: because I don't like the current one
(18:44:13) Gabrys: I want to have something like "Hello dear users. There is a problem at our side. Please refresh or go HERE to report the problem"
(18:44:32) Gabrys: and not 500 - Internal Server Error, that scares our users
(18:44:52) Gabrys: and this error happens when we are under heavy load and from time to time just randomly
(18:48:23) Gabrys: I want custom 500 error page. Lighttpd configuration allows that, but I can't get it working, neither with server.error-handler-500 nor server.errorfile-prefix.
fastcgi.server = (
".php" => ( "spawn-phps-1" =>
(
"host" => "127.0.0.1",
"port" => 3301,
"broken-scriptfilename" => "enable",
"allow-x-send-file" => "enable",
),
"spawn-phps-2" =>
(
"host" => "127.0.0.1",
"port" => 3302,
"broken-scriptfilename" => "enable",
"allow-x-send-file" => "enable",
)
) )
