Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

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.

share|improve this question
4  
googling "apache max url length" yields a number of useful results – skaffman Aug 17 '09 at 18:28
Duplicate: stackoverflow.com/questions/417142/… – S.Lott Aug 17 '09 at 18:29
2  
Not duplicate. But the referenced one from S.Lott is useful. OP is asking for specific server's limitations. – maxwellb Aug 17 '09 at 19:13

7 Answers

up vote 29 down vote accepted

The default limit for the length of the request line is 8190 bytes (see LimitRequestLine directive). 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.

share|improve this answer
3  
You're right. I tested it with Apache 2.2.11 and adjusting LimitRequestLine works well. For kicks, I've successfully used it with 128K urls. – Stef Aug 17 '09 at 22:46
2  
Did you have to recompile to use such large values? My version (2.2.15) silently ignores LimitRequestLine directives over 8190 unless recompiled with the added CFLAG "-D DEFAULT_LIMIT_REQUEST_LINE=16384" (then it allows up to 16384). – sh-beta May 19 '10 at 17:33
2  
Note that this is bytes; with urlencoded multibyte characters, it's rather easy to hit this limit (as a n-byte character takes n*3 bytes: becomes %E2%98%A2). – Piskvor Feb 4 '11 at 10:15
  • Internet Explorer: 2,083 characters, with no more than 2,048 characters in the path portion of the URL
  • Firefox: 65,536 characters show up, but longer URLs do still work even up past 100,000
  • Safari: > 80,000 characters
  • Opera: > 190,000 characters
  • IIS: 16,384 characters, but is configurable
  • Apache: 4,000 characters

From: http://www.danrigsby.com/blog/index.php/2008/06/17/rest-and-max-url-size/

share|improve this answer

The official length according to the offical Apache docs is 8,192, but many folks have run into trouble at ~4,000.

MS Internet Explorer is usually the limiting factor anyway, as it caps the maximum URL size at 2,048.

share|improve this answer

Approximately 4,000.

Source: I'm Feeling Lucky

share|improve this answer

Allowed size of URI is 8177 characters in GET request. Simple code in python for such testing.

#!/usr/bin/env python2

import sys
import socket

if __name__ == "__main__":
    string = sys.argv[1]
    buf_get = "x" * int(string)
    buf_size = 1024
    request = "HEAD %s HTTP/1.1\nHost:localhost\n\n" % buf_get
    print "===>", request

    sock_http = socket.socket(socket.AF_INET, socket.SOCK_STREAM)
    sock_http.connect(("localhost", 80))
    sock_http.send(request)
    while True:
       print "==>", sock_http.recv(buf_size)
       if not sock_http.recv(buf_size):
           break
   sock_http.close()

On 8178 characters you will get such message: HTTP/1.1 414 Request-URI Too Large

share|improve this answer
1  
That's the default length, changeable with the LimitRequestLine configuration directive. – Stef Sep 15 '11 at 6:32

Googled "apache maximum url length" and got the following (a little old, but still relevent):

WWW FAQs: What is the maximum length of a URL?

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.