I have 开发者_如何学Pythona web service using lighttpd and fastCGI (using TCP) where lighttpd causes a processor bottleneck. How can I optimize the performance of lighttpd and fastCGI?
I am trying to send files by using X-Sendfile directive in lighttpd. My php code is; header(\"Content-Type: application/force-download\");
I read in lighttpd 1.4.19 source codes, now I got stuck at the function fcgi_spawn_connection, if (-1 == connec开发者_JAVA技巧t(fcgi_fd, fcgi_addr, servlen)) {
I am not very familiar with Regular expression, but I am asked to modify a lighttpd rewrite rule. url.rewrite = (
I only need to do this for one file (uptime.php) and it must be requested by using uptime.png. Adding a rule for all png files in my conf开发者_StackOverflow中文版ig file would be suicide.. :PIn gene
I am trying to build library application. Converting the PDF documents to PNG images. (each page is one PNG file)
I have read in a site that another benefit of having Lighttpd in front of Apache is lower number of child processes. Lighttpd will handle keep-alive and client requests while child processes of Apache
I have compiled fastcgi c-api examples: http://www.fastcgi.com/devkit/examples/ They work fine when I execute them manually in the command line (by typing ./echo for example) but I have some troubles
I have two websites: one with Lighttpd with PHP and second with Apache and neither of this handle chunked transfer encoding properly.
I have a REST API written in PHP located on Apache server.It takes as a parameter a file (15KB). When I call this API from J2ME application it does work fine. Moreover when I wrote a API client in C#