This weekend I decided to switch from Apache2 to Lighttpd. I run a little P3/256MB server at home, so Lighty seems the better choice when it comes to memory and speed... I also like the the 'simple vhosts' option...
Compiling the latest keyword-masked version went fine. Configuration was really simple and I got it running perfectly. All my own sites (mysql backed php) work perfectly (and faster?) except for squirrelmail... I also tried the stable version, to no avail...
I can log in to Squirrelmail, but when showing the folder list & contents, only the frames page is loaded an nothing happens after that. (I only get the frame border and 2 empty panes)
Does anybody have squirrelmail running under Lighty?
-thx!-
Simple vhost config:
Code: Select all
$HTTP["host"] !~ "^(mail\.domain\.ext)$" {
simple-vhost.server-root = "/var/www/domain.ext"
simple-vhost.default-host = "default"
simple-vhost.document-root = "public"
}
$HTTP["host"] == "mail.domain.ext" {
server.document-root = "/var/www/localhost/htdocs/squirrelmail/"
}
