What is the maximum length of a URL in apache? Where is it documented, and is it configurable?
I’m implementing an openid identity provider, and would like to know the limitations I’m up against. I know about the 2048 byte path limit on Internet Explorer. That can be handled specially using user agent detection. Other browsers have much higher URL limits.
So what I’m interested in is apache server limits when coding an application.
The default limit for the length of the request line is 8190 bytes (see
LimitRequestLinedirective). And if we subtract three bytes for the request method (i.e.GET), eight bytes for the version information (i.e.HTTP/1.0/HTTP/1.1) and two bytes for the separating space, we end up with 8177 bytes for the URI path plus query.