Selectively enable HTTP/3, HTTP/2, and SPDY HTTP network protocols.

#1
hi
i have set ALPN to none in my ssl listener so but my domain getting http/2
listener SSL {
address *:443
secure 1
enableSpdy 0
}
I want to set this config to my all SSL Vhost.
is this possible or should I have to add this in all Vhost
 
#3
listener SSL {
address *:443
secure 1
enableSpdy 0
}
if I write in the listener conf then it should be assigned to all Vhost?
or shall I have to write this rule in all Vhost
 
Top