Bug #16
missing exec on fastcgi handler
| Status: | Fixed | Start: | ||
| Priority: | Normal | Due date: | ||
| Assigned to: | - | % Done: | 0% |
|
| Category: | mod_fastcgi | |||
| Target version: | - | |||
| Pending: | Resolution: | fixed |
||
Description
There is a missing "exec" after the "-c" argument on fcgi.c:
/* exec the cgi */
execle("/bin/sh", "sh", "-c", appPath, NULL, env.ptr);
Without that, when one kills lighttpd the started fastcgi applications will not be killed.