Hi all,
sledge0303 posted some outstanding documentation how to run OX 0.8 with lighttpd. I am not a lighttpd fanatic, but it'll be cool to run OX Hyperion with other Webbrowsers than mighty apache2. I just started research but i almost managed to login
It seems that just setting the session cookie prevents me from a successful configuration. Is anybody around who may have a clue how to set the JSESSIONID and open-xchange-session-* cookie using lighty?
So far, i did the following configuration:
Downloaded lighttpd 1.5.0-r1857 (source)
Downloaded lighttpd-1.4.7 (source)
copied lighttpd-1.4.7/debian to lighttpd-1.5.0
applied http://johannburkard.de/resources/Jo...ry_string.diff
dpkg-buildpackage
dpkg -i lighttpd_1.5.0_amd64.deb
lighttpd.conf:
This leads to proper servlet functionality, but the server does not set any cookie while login:
Error code: The cookie with the session identifier is missing. (SES-202)
Any suggestions?
sledge0303 posted some outstanding documentation how to run OX 0.8 with lighttpd. I am not a lighttpd fanatic, but it'll be cool to run OX Hyperion with other Webbrowsers than mighty apache2. I just started research but i almost managed to login
It seems that just setting the session cookie prevents me from a successful configuration. Is anybody around who may have a clue how to set the JSESSIONID and open-xchange-session-* cookie using lighty?So far, i did the following configuration:
Downloaded lighttpd 1.5.0-r1857 (source)
Downloaded lighttpd-1.4.7 (source)
copied lighttpd-1.4.7/debian to lighttpd-1.5.0
applied http://johannburkard.de/resources/Jo...ry_string.diff
dpkg-buildpackage
dpkg -i lighttpd_1.5.0_amd64.deb
lighttpd.conf:
Code:
server.modules = (
"mod_access",
"mod_status",
"mod_cgi",
"mod_alias",
"mod_auth",
"mod_evasive",
"mod_proxy_core",
"mod_proxy_backend_http",
"mod_proxy_backend_fastcgi",
"mod_proxy_backend_ajp13",
"mod_deflate",
"mod_rewrite",
"mod_accesslog" )
[...]
#### AJP13
server.modules += ( "mod_proxy_backend_ajp13" )
$HTTP["url"] =~ "^/servlet/" {
proxy-core.balancer = "round-robin"
proxy-core.protocol = "ajp13"
proxy-core.backends = ( "localhost:8009" )
proxy-core.max-pool-size = 16
}
$HTTP["url"] =~ "^/ajax/" {
proxy-core.balancer = "round-robin"
proxy-core.protocol = "ajp13"
proxy-core.backends = ( "localhost:8009" )
proxy-core.max-pool-size = 16
}
Error code: The cookie with the session identifier is missing. (SES-202)
Any suggestions?

Comment