Hello,
I use lighttpd as frontend of java application via the mod_proxy but I have a problem.
When I had, in the index files list, index.ext which must be catched by the mod_proxy plugin, lighttpd send me a 403 error.
I searched the error and corrected it.
In mod_proxy.c, I added in the function mod_proxy_plugin_init(plugin *p):
p->handle_subrequest_start = mod_proxy_check_extension_2;
And also in mod_proxy.c, I added the function:
static handler_t mod_proxy_check_extension_2(server *srv, connection *con, void *p_d) {
return mod_proxy_check_extension(srv, con, p_d);
}
Regards
Baptiste