On Tue, Mar 10, 2009 at 11:26 AM, Dániel Vásárhelyi <[email protected]> wrote: > Pound is continuously replying all HTTP/1.0 requests by e503.... All > the requests do have Host: header (the only one match I made in the > config), so I am a bit confused... A bit boring, but I have found the problem meantime:
All HTTP/1.0 requests send Host header like this (mind the missing space): Host:hostname I was matching /^Host: hostname/, so now I'm matching /^[Hh]ost:\s*hostname$/ and now it works. Hope I did not bore anyone too much ;) asd -- Dániel Vásárhelyi “He who asks a question is a fool for five minutes; he who does not ask a question remains a fool forever” Chinese proverb -- To unsubscribe send an email with subject unsubscribe to [email protected]. Please contact [email protected] for questions.
