[Answer]-"child exited with status 13" error with Lighttpd running Django app

1👍

FastCGI is trying to execute the script specified in bin-path. Make sure that the script /var/www/servers/mydomain.com/awesomesite/mydomain.fcgi has the execution flag set by issuing:

ls -l /var/www/servers/mydomain.com/awesomesite/mydomain.fcgi

and verify that the x flag is set for the user and/or group that the webserver/fastCGI runs as.

👤HAL

Leave a comment