File tree Expand file tree Collapse file tree 1 file changed +2
-3
lines changed Expand file tree Collapse file tree 1 file changed +2
-3
lines changed Original file line number Diff line number Diff line change @@ -10,7 +10,6 @@ our $HtmlDir = html_dir;
10
10
11
11
$ENV {TEST_NGINX_MEMCACHED_PORT } ||= 11211;
12
12
$ENV {TEST_NGINX_RESOLVER } ||= ' 8.8.8.8' ;
13
- $ENV {TEST_NGINX_HTML_DIR } ||= html_dir();
14
13
15
14
# log_level 'warn';
16
15
log_level ' debug' ;
@@ -4504,7 +4503,7 @@ reused times: 3, setkeepalive err: closed
4504
4503
=== TEST 74: setkeepalive with TLSv1.3
4505
4504
--- skip_openssl: 3: < 1.1.1
4506
4505
--- stream_server_config
4507
- listen unix:$TEST_NGINX_HTML_DIR/nginx.sock ssl;
4506
+ listen 11443 ssl;
4508
4507
ssl_certificate ../../cert/test.crt;
4509
4508
ssl_certificate_key ../../cert/test.key;
4510
4509
ssl_protocols TLSv1.3;
@@ -4524,7 +4523,7 @@ reused times: 3, setkeepalive err: closed
4524
4523
local sock = ngx.socket.tcp()
4525
4524
sock:settimeout(2000)
4526
4525
4527
- local ok, err = sock:connect("unix:$TEST_NGINX_HTML_DIR/nginx.sock" )
4526
+ local ok, err = sock:connect("127.0.0.1", 11443 )
4528
4527
if not ok then
4529
4528
ngx.say("failed to connect: ", err)
4530
4529
return
You can’t perform that action at this time.
0 commit comments