amoghyermalkar123 opened a new issue, #8964:
URL: https://github.com/apache/trafficserver/issues/8964
I have a setup where I would like to enable http2 selectively on specific
domains from remap.config.
The rest of the domains where http2 is not enabled should be rejected to use
http2 even if the client speaks http2 and should default to http1.
I tried setting up ssl_server_name.yml as such -
```
- fqdn: somedomain.com
disable_h2: true
```
and configuring records.config like -
```
CONFIG proxy.config.http.server_ports STRING 80 443:proto=http2;http:ssl
443:ipv6
...
```
but this combination has not worked for me since If i request somedomain.com
with an http2 client, my request is not rejected.
My http client request looks like this -
```
curl -s --http2 -o /dev/null -v --resolve somedomain.com443:SOME_IP -H
"Host: somedomain.com" "https://somedomain.com/content"
```
--
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
To unsubscribe, e-mail: [email protected]
For queries about this service, please contact Infrastructure at:
[email protected]