AES Encryption Explained: How It Works and Why It Matters
Jun 23, 2026
5xx Server Error
The 505 (HTTP Version Not Supported) status code indicates that the server does not support, or refuses to support, the major version of HTTP that was used in the request. This is rare in practice, as most servers support HTTP/1.0, HTTP/1.1, and HTTP/2.
If a legacy server receives an HTTP/2 request it does not support, return 505 HTTP Version Not Supported. Modern servers should support HTTP/1.0 through HTTP/2, so encountering 505 usually indicates a client or proxy configuration issue.
# Nginx - restricting HTTP versions
server {
listen 443 ssl http2;
# Only allow HTTP/2 and HTTP/1.1 by default
}
Blog
Jun 23, 2026
Jun 23, 2026
Jun 23, 2026
Jun 23, 2026
Jun 23, 2026
Jun 23, 2026