Commit 15a10366 authored by Andrey Filippov's avatar Andrey Filippov

redirected stderr in lighttpd

parent a460f84c
...@@ -42,6 +42,8 @@ server.document-root = "/www/pages" ...@@ -42,6 +42,8 @@ server.document-root = "/www/pages"
## where to send error-messages to ## where to send error-messages to
server.errorlog = "/www/logs/lighttpd.error.log" server.errorlog = "/www/logs/lighttpd.error.log"
## where cgi stderr output is redirected
server.breakagelog = "/www/logs/lighttpd_stderr.log"
# files to check for if .../ is requested # files to check for if .../ is requested
index-file.names = ( "index.php", "index.html", index-file.names = ( "index.php", "index.html",
...@@ -233,7 +235,8 @@ server.port = 80 ...@@ -233,7 +235,8 @@ server.port = 80
) )
#### CGI module #### CGI module
cgi.assign = ( ".py" => "/usr/bin/python" ) cgi.assign = ( ".py" => "/usr/bin/python",
".cgi" => "")
#cgi.assign = ( ".pl" => "/usr/bin/perl", #cgi.assign = ( ".pl" => "/usr/bin/perl",
# ".cgi" => "/usr/bin/perl" ) # ".cgi" => "/usr/bin/perl" )
# #
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment