Xuefer opened a ticket to document the history of lighty.
As we have a new logo now I wrote everything up, why I started it, why I continued and were we will head to.
If you want, add your date when you started using lighty to the comments.
Xuefer opened a ticket to document the history of lighty.
As we have a new logo now I wrote everything up, why I started it, why I continued and were we will head to.
If you want, add your date when you started using lighty to the comments.
After the logo-contest went very well and we have seen very nice and professional proposals lighty finally has a logo.
The winning entry is based on the paper airplane submitted by Phu from endturn. It was modified by Paul from openartist.net.
Good work. Now we have a nice button which everyone can add to their sites and link back to lighttpd.net.
For a real big one, we have the big logo with a nice slogan:
For more information about the idea of the logo and more background on how lighttpd was started check the story of lighttpd on lighttpd.net.
After the release didn’t revealed any serious bugs the documentation was updated and the final release was roled.
Get it at www.lighttpd.net/download/ and spread the word.
I would like to see some comments on the loadbalancers in mod_proxy and the new mod_scgi.
The last release of lighttpd is now 3 month ago and several patches are waiting in the trac.lighttpd.net/trac/ for their release.
Next to several bug-fixes it contains a simplified CARP (Cache Array Routing Protocol) like load balancing for mod_proxy and a new mod_scgi for WSGI + python.
The first public pre-release has been upload and is meant for a wider testing than the svn-tree.
Please don’t put that on a production system yet even it contains mostly bugfixes.
www.lighttpd.net/download/lighttpd-1.3.14-20050612-1303.tar.gz
Yeaha, what a impressive contest. So many nice ideas on how to interpret the word light. Even in the last days before the contest was closed we got some final submissions. I’m impressed and confused in the same way.
I can’t draw a decision on my own. I need your help. Think about the following questions and post yours answers in the comment.
I have some personal candidates, but can’t come to a final conclusion, perhaps you can help me ?
After poking I was poked several times to publish a benchmark between lighttpd and Apache2 I added it to the benchmark page.
More impressive than scientific benchmarks are real-world tests like the oen Jason has done: Taking a full frontal slashdot lighttpdly at textdrive. :)
Only 7 days are left for the lighttpd logo contest. In the last week 3 artists have sent in there submissions with one of them being so creative to submit 8 logos at once.
Please take a look at the new submissions and leave your comment under this article.
The logo contest is very successfull. In the second week we got several new candidates which have their own idea of the word light. From the beginning I thought about the word light in all fashions:
The authors of the logos have added more ideas to this base and it looks truly amazing what they have created and I really love to see this. I still encourage you to add more ideas to this base, perhaps a authors graps it and draws something nice.
I spent some hours in the airport of Hong-Kong and wanted to get the 1.3.x branch running on cygwin in combination with PHP via FastCGI. On the road I most often work under Windows on my Laptop and being able to really test it under every platform, even cygwin is a nice to have.
It was already spawned automaticly by the internal spawner after I had compiled PHP in cygwin myself with FastCGI support. The only thing missing was a working FastCGI handler. Debugging in cygwin is a lot harder than doing the same under Linux as the strace is tracing the emulated environment and not the native system calls:
$ strace —mask=syscall .libs/lighttpd.exe -D -f ./lighttpd.conf
Adding a bunch of log_error_write() statements in the mod_fastcgi.c code somewhen revealed what is really going on. I still wonder why it ever worked at all :)
changeset 343 is the final result of this debug session and will be part of 1.3.14 moving the ‘please send me FDEVENT_IN’ before we return with WAIT_FOR_EVENT. This also removes the ‘I got FDEVENT_OUT and don’t know way’ messages than sometimes appeared.
i’m moo, new to lighttpd
As many of you might ask: “how do i write cond1 AND cond2”. we have the answer in 1.4
i focused on the configuration of the upcoming lighttpd1.4. i made many improvements to her.
One of the most noticeable change is nesting and chaining, as you might already known as “and” / “else”:
cond_a {
cond_b {
}
}
else cond_c {
}
also, “user-defined” variable and “include” is impemented. if you used to copy/paste many of your config for each vhost, u can now put them into a sub config file, and even use the variable:
. in lighttpd.conf
$HTTP[“host”] == “t1.lighttpd.net”{
var.name=“t1”
include “myvhost.conf”
}
$HTTP[“host”] == “t2.lighttpd.net”{
var.name=“t2”
include “myvhost.conf”
}
. in myvhost.conf
server.name = var.name + “.lighttpd.net”
server.document-root = “/mydocroot/” + var.name + “/public_html/”
you can also use config values such as server.name + “/…”, and even use env.* to get environment variable
i’ve also implemented(but not commited yet) “include_shell”, which parse the output of program which convert some on the fly. for example:
include “mysub.conf”
- compare the above line to the following
include_shell “/usr/bin/convmimetype /etc/mime.types”- same as mime.assign = array(…)
notice the above is all at config parsing time(when loading config), so no performance lost. runtime variable isn’t implemented yet. i have no idea how it should be implemented exactly, nor do i know how to avoid hurting performance.
there are more, optimization for runtime condition checking, pcre_study speed up for regex matching, new command line options(check with -h).
FIY, before i implement these things. i myself use m4, a macro language to write the config. it’s powerful but ugly and dirty, and is just a brain dead game. i can use variable/include in m4, but not output “else” “and”. but i can now do all what i needed in lighttpd alone without m4.
check news when 1.4 is out, or check svn :)