Skip to content

Latest commit

 

History

History
27 lines (14 loc) · 873 Bytes

Limits.md

File metadata and controls

27 lines (14 loc) · 873 Bytes

Limitation of URL and headers size

Modern browsers allow you specify very long URLs, 2MB easily.

But there are some limitation from WebServers and CDN. Generally up to 12KB only for URI is safe.

Limitations

URL address is part of request HTTP headers, following limits are for URL + headers.

Vercel 14KB, hard limit

Docs

Apache httpd 8KB, can be increased

Docs

Nginx 8KB, can be increased

Docs

NodeJS 8KB, can be increased with --max-http-header-size=16384

Docs

Docs2