mirror of
https://git.haproxy.org/git/haproxy.git/
synced 2025-12-05 17:51:15 +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
730 B
Plaintext
19 lines
730 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"
|
|
feature cmd "$HAPROXY_PROGRAM -cc 'version_atleast(2.5-dev0)'"
|
|
feature cmd "$HAPROXY_PROGRAM -cc 'feature(OPENSSL)'"
|
|
|
|
setenv VTC_SOCK_TYPE stream
|
|
include ${testdir}/ssl_default_server.vtci
|