"hv @ Fashion Content" <[EMAIL PROTECTED]> skrev i en meddelelse
news:[EMAIL PROTECTED]
> Anyone know how to patch to following to support APR 1.2 ?
>
> static apr_status_t
>
> send_headers(request_rec *r, struct sockbuff *s)
>
> {
>
> /* heade
Anyone know how to patch to following to support APR 1.2 ?
static apr_status_t
send_headers(request_rec *r, struct sockbuff *s)
{
/* headers to send */
apr_table_t *t;
const apr_array_header_t *hdrs_arr, *env_arr;
apr_table_entry_t *hdrs, *env;
unsigned long int n = 0;
char *buf;
int i;
I have a fairly simple setup for a website but I get an error stating that
no handler was found.
ServerName django.example.com
ErrorLog /var/log/httpd/django-error.log
CustomLog /var/log/httpd/django-access.log combined
DocumentRoot /var/www/example/django
LogLevel debug
AddDefaultCharse
I use ajp to connect to one Tomcat host, which works fine. But all other
connections fail with a 403 access forbidden.
In the error log the only thing I see is
[warn] proxy: No protocol handler was valid for the URL /. If you are using
a DSO version of mod_proxy, make sure the proxy submodules
It could be that I just need to fix my httpd.conf, but I am a bit stuck.
I basicly have a virtualhost like this:
DocumentRoot /var/www/site1
Allow from all
JkUriSet worker ajp13:localhost:8009
I want all requests to /ldapadmin.* to be served by apache+php and the rest
to be served by tomcat