diff options
author | 2024-10-02 15:07:40 +0200 | |
---|---|---|
committer | 2024-10-03 04:56:10 +0000 | |
commit | 7bae9b0e824d17de3769b2de299ad2d2c88e2620 (patch) | |
tree | 2ae63e0cefa4458ce293a0fd3d2d99542bb8a5af /extras/hs-test/resources | |
parent | 2c52f5e8886fe2d7fa2aeb1fa15a8c9491b0128e (diff) |
hs-test: use nginx 1.26.2 for NginxHttp3Test
- test is no longer marked as extended
- no building required -> removed nginx build scripts
Type: test
Change-Id: I1814b1e4b7e514f81797efa3b5c1e818d2fe4cda
Signed-off-by: Adrian Villin <avillin@cisco.com>
Diffstat (limited to 'extras/hs-test/resources')
-rw-r--r-- | extras/hs-test/resources/nginx/nginx_http3.conf | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/extras/hs-test/resources/nginx/nginx_http3.conf b/extras/hs-test/resources/nginx/nginx_http3.conf index 2a01f714111..e048b17044b 100644 --- a/extras/hs-test/resources/nginx/nginx_http3.conf +++ b/extras/hs-test/resources/nginx/nginx_http3.conf @@ -2,6 +2,8 @@ master_process on; worker_processes 2; daemon off; +error_log /tmp/nginx/{{.LogPrefix}}-error.log info; + events { use epoll; accept_mutex off; @@ -12,12 +14,11 @@ http { quic_gso on; quic_retry on; - access_log logs/access.log; + access_log /tmp/nginx/{{.LogPrefix}}-access.log; keepalive_timeout 300s; sendfile on; server { listen 0.0.0.0:8443 quic; - #listen 0.0.0.0:8443 ssl; root /usr/share/nginx; ssl_certificate /etc/nginx/ssl/localhost.crt; ssl_certificate_key /etc/nginx/ssl/localhost.key; |