I have been searching in the forum and google but still not lucky enough to figure out yet.
I have a lighttpd server running (because apache consume so much CPU and memory) and qmailtoaster (just setup).
Here is the configuration in cgi modules:
Code:
cgi.assign = ( ".pl" => "/usr/bin/perl",
".cgi" => "/usr/bin/perl",
"/qmailadmin" => "/usr/share/qmailadmin/qmailadmin",
".rb" => "/usr/bin/ruby",
".erb" => "/usr/bin/eruby",
".py" => "/usr/bin/python" )
I already enable:
Code:
server.follow-symlink = "enable"
With apache, it works fine but not with lighttpd. When I open it, the index page to qmailadmin show login. After login, it redirect to index.cgi with blank page.
Here are list of files in /usr/share/qmailadmin/:
Code:
drwxr-xr-x 2 root root 4096 Aug 19 16:09 html
drwxr-xr-x 3 lighttpd lighttpd 4096 Aug 19 16:09 images
lrwxrwxrwx 1 vpopmail vchkpw 10 Aug 19 20:37 index.cgi -> qmailadmin
drwxr-xr-x 2 root root 4096 Aug 19 16:09 lang
-rwsr-sr-x 1 vpopmail vchkpw 143500 Aug 19 16:09 qmailadmin
Any help?