ich hab ein Problem mit dem Lighttpd 1.5.0 und OpenXchange. Benutze ich Apache2, tritt das Problem nicht auf.
Es geht darum, ich rufe die URL zur Groupware auf. Gebe Benutzerkennung/Passwort ein, lädt der Lighty nicht die Komponenten der Groupware, bleibt beim Loginfenster stehen. Geb ich ein falsches PW an, meckert mich OpenXchange an, soweit so gut.
Bei der selben Konfiguration des Lighties funktionieren die Vorgängerversionen von OpenXchange.
In den Logs siehst das so aus:
Lighty ruft die Loginpage auf
Code: Select all
"GET /ajax/login?action=autologin HTTP/1.1" 200 124 "http://ox.testserver.de/ox.html" ...
Code: Select all
"GET /ajax/login?action=login&name=oxadmin&password=password HTTP/1.1" 200 103 "http://ox.testserver.de/ox.html" ...
"GET /ajax/config/?session=fdde50d766b1891134c5b8985908f197 HTTP/1.1" 200 152 "http://ox.testserver.de/ox.html"
"GET /ajax/folders?action=get&session=fdde50d766b1891134c5b8985908f197&folder=INBOX&id=INBOX&columns=310,311 HTTP/1.1" 200 153 "http://ox.netzwerkdienst-wittenau.de/ox.html"
"GET /ajax/quota?action=mail&session=fdde50d766b1891134c5b8985908f197 HTTP/1.1" 200 138 "http://ox.testserver.de/ox.html"
"GET /ajax/quota?action=filestore&session=fdde50d766b1891134c5b8985908f197 HTTP/1.1" 200 152 "http://ox.testserver.de/ox.html"
"GET /ajax/calendar?action=has&session=fdde50d766b1891134c5b8985908f197&start=1174867200000&end=1175472000000 HTTP/1.1" 200 138 "http://ox.testserver.de/ox.html"
Im Vergleich zum Apache2 AJP13_worker
Code: Select all
worker.list=localhost
worker.localhost.port=8009
worker.localhost.host=localhost
worker.localhost.type=ajp13
worker.localhost.lbfactor=1
JkMount /ajax/* ajp13_worker
JkMount /servlet/* ajp13_worker
workers.java_home=/usr/local/java
Code: Select all
server.modules += ( "mod_proxy_backend_ajp13" )
$HTTP["url"] =~ "^/ajax/|^/servlet/" {
proxy-core.balancer = "round-robin"
proxy-core.protocol = "ajp13"
proxy-core.backends = ( "localhost:8009" )
proxy-core.max-pool-size = 16
}
Code: Select all
"mod_access",
"mod_status",
"mod_cgi",
"mod_alias",
"mod_compress",
"mod_deflate",
"mod_evasive",
"mod_proxy_core",
"mod_proxy_backend_fastcgi",
"mod_proxy_backend_ajp13",
"mod_accesslog"
Code: Select all
mimetype.assign = (
".pdf" => "application/pdf",
".sig" => "application/pgp-signature",
".spl" => "application/futuresplash",
".class" => "application/octet-stream",
".ps" => "application/postscript",
".torrent" => "application/x-bittorrent",
".dvi" => "application/x-dvi",
".pac" => "application/x-ns-proxy-autoconfig",
".swf" => "application/x-shockwave-flash",
".tgz" => "application/x-tgz",
".mp3" => "audio/mpeg",
".m3u" => "audio/x-mpegurl",
".wma" => "audio/x-ms-wma",
".wax" => "audio/x-ms-wax",
".ogg" => "application/ogg",
".wav" => "audio/x-wav",
".xbm" => "image/x-xbitmap",
".xpm" => "image/x-xpixmap",
".xwd" => "image/x-xwindowdump",
".asc" => "text/plain",
".c" => "text/plain",
".h" => "text/plain",
".cc" => "text/plain",
".cpp" => "text/plain",
".hh" => "text/plain",
".hpp" => "text/plain",
".conf" => "text/plain",
".log" => "text/plain",
".text" => "text/plain",
".txt" => "text/plain",
".diff" => "text/plain",
".patch" => "text/plain",
".ebuild" => "text/plain",
".eclass" => "text/plain",
".rtf" => "application/rtf",
".bmp" => "image/bmp",
".tif" => "image/tiff",
".tiff" => "image/tiff",
".ico" => "image/x-icon",
".mpeg" => "video/mpeg",
".mpg" => "video/mpeg",
".mov" => "video/quicktime",
".qt" => "video/quicktime",
".avi" => "video/x-msvideo",
".asf" => "video/x-ms-asf",
".asx" => "video/x-ms-asf",
".wmv" => "video/x-ms-wmv",
".tbz" => "application/x-bzip-compressed-tar",
".tar.bz2" => "application/x-bzip-compressed-tar",
".tar.gz" => "application/x-tgz",
".bz2" => "application/x-bzip",
".gz" => "application/x-gzip",
".tar" => "application/x-tar",
".zip" => "application/zip",
".jpeg" => "image/jpeg",
".jpg" => "image/jpeg",
".png" => "image/png",
".gif" => "image/gif",
".xhtml" => "text/html",
".html" => "text/html",
".htm" => "text/html",
".dtd" => "text/xml",
".xml" => "text/xml",
".css" => "text/css",
".js" => "text/javascript",
".php" => "application/x-httpd-php",
"" => "text/plain",
)