Replies: 3 comments
|
Hello, I am not opposed. How would such support look? |
0 replies
|
I added http2 for send request, and try to keep the original workflow, also I do some test on my own ,you can view the commit at |
0 replies
|
I am experimenting with blocking HTTP/1.1 because that's what most bots are limited to. A software I am using (OpenID Connect auth plugin for PeerTube) is using this library, which is causing it to be blocked. {
"level": "info",
"ts": 1785536880.225794,
"logger": "http.log.access.example.org",
"msg": "handled request",
"request": {
"remote_ip": "104.20.26.136",
"remote_port": "60330",
"client_ip": "104.20.26.136",
"proto": "HTTP/1.1",
"method": "GET",
"host": "authentik.example.org",
"uri": "/application/o/peertube/.well-known/openid-configuration",
"headers": {
"Sec-Fetch-Mode": ["cors"],
"Accept-Encoding": ["br, gzip, deflate"],
"Connection": ["keep-alive"],
"Accept": ["application/json"],
"User-Agent": ["openid-client/v6.8.4"],
"Accept-Language": ["*"]
},
"tls": {
"resumed": false,
"version": 772,
"cipher_suite": 4865,
"proto": "",
"server_name": "authentik.example.org",
"ech": false
}
},
"bytes_read": 0,
"user_id": "",
"duration": 0.00004087,
"size": 0,
"status": 426,
"resp_headers": {
"Server": ["Caddy"],
"Alt-Svc": ["h3=\":443\"; ma=2592000"],
"Strict-Transport-Security": ["max-age=63072000"],
"Connection": ["Upgrade"],
"Upgrade": ["HTTP/3.0"]
}
} |
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
Some OpenID servers only support HTTP/2. I'm wondering if there is any plan to support HTTP/2, or I can also submit a pull request.
All reactions