mirror of
https://git.haproxy.org/git/haproxy.git/
synced 2025-12-06 10:11:00 +01:00
ssl/ssl_default_server.vtc was renamed to ssl/ssl_default_server.vtci
to produce a common part runnable both for QUIC and TCP listeners.
Then ssl_default_server.vtc files were created both under ssl and quic directories
to call this .vtci file with correct VTC_SOCK_TYPE environment values
("quic" for QUIC listeners and "stream" for TCP listeners);
19 lines
793 B
Plaintext
19 lines
793 B
Plaintext
#REGTEST_TYPE=devel
|
|
|
|
# This reg-test ensures that SSL related configuration specified in a
|
|
# default-server option are properly taken into account by the servers
|
|
# (frontend). It mainly focuses on the client certificate used by the frontend,
|
|
# that can either be defined in the server line itself, in the default-server
|
|
# line or in both.
|
|
#
|
|
# It was created following a bug raised in redmine (issue #3906) in which a
|
|
# server used an "empty" SSL context instead of the proper one.
|
|
#
|
|
|
|
varnishtest "Test the 'set ssl cert' feature of the CLI"
|
|
# QUIC backend are not supported with USE_QUIC_OPENSSL_COMPAT
|
|
feature cmd "$HAPROXY_PROGRAM -cc 'feature(QUIC) && !feature(QUIC_OPENSSL_COMPAT) && !feature(OPENSSL_WOLFSSL)'"
|
|
|
|
setenv VTC_SOCK_TYPE quic
|
|
include ${testdir}/../ssl/ssl_default_server.vtci
|