hs-test: add nginx+quic test
Type: test Change-Id: I15e4f2fb84cb4f34b6fea95978db000854a63e78 Signed-off-by: Filip Tehlar <ftehlar@cisco.com>
This commit is contained in:

committed by
Florin Coras

parent
fe965a3a17
commit
31eaea9eef
8
extras/hs-test/docker/Dockerfile.build
Normal file
8
extras/hs-test/docker/Dockerfile.build
Normal file
@@ -0,0 +1,8 @@
|
||||
ARG UBUNTU_VERSION
|
||||
|
||||
FROM ubuntu:${UBUNTU_VERSION}
|
||||
|
||||
RUN apt-get update \
|
||||
&& apt-get install -y gcc git make autoconf libtool pkg-config cmake ninja-build golang \
|
||||
&& rm -rf /var/lib/apt/lists/*
|
||||
|
7
extras/hs-test/docker/Dockerfile.curl
Normal file
7
extras/hs-test/docker/Dockerfile.curl
Normal file
@@ -0,0 +1,7 @@
|
||||
FROM hs-test/build
|
||||
|
||||
COPY script/build_curl.sh /build_curl.sh
|
||||
RUN git clone https://github.com/curl/curl
|
||||
RUN /build_curl.sh
|
||||
|
||||
CMD ["/bin/sh"]
|
@@ -17,4 +17,4 @@ ENV LDP_DEBUG=0
|
||||
ENV VCL_DEBUG=0
|
||||
ENV LDP_SID_BIT=8
|
||||
|
||||
ENTRYPOINT ["nginx_ldp.sh", "-c", "/nginx.conf"]
|
||||
ENTRYPOINT ["nginx_ldp.sh", "nginx", "-c", "/nginx.conf"]
|
||||
|
24
extras/hs-test/docker/Dockerfile.nginx-http3
Normal file
24
extras/hs-test/docker/Dockerfile.nginx-http3
Normal file
@@ -0,0 +1,24 @@
|
||||
FROM hs-test/build
|
||||
|
||||
COPY script/build_boringssl.sh /build_boringssl.sh
|
||||
RUN git clone https://boringssl.googlesource.com/boringssl
|
||||
RUN ./build_boringssl.sh
|
||||
|
||||
COPY script/build_nginx.sh /build_nginx.sh
|
||||
RUN git clone https://github.com/nginx/nginx
|
||||
RUN ./build_nginx.sh
|
||||
|
||||
COPY vpp-data/lib/* /usr/lib/
|
||||
COPY resources/nginx/vcl.conf /vcl.conf
|
||||
COPY resources/nginx/nginx_http3.conf /nginx.conf
|
||||
COPY script/nginx_ldp.sh /usr/bin/nginx_ldp.sh
|
||||
|
||||
COPY resources/nginx/html/index.html /usr/share/nginx/index.html
|
||||
|
||||
ENV VCL_CONFIG=/vcl.conf
|
||||
ENV LDP=/usr/lib/libvcl_ldpreload.so
|
||||
ENV LDP_DEBUG=0
|
||||
ENV VCL_DEBUG=0
|
||||
ENV LDP_SID_BIT=8
|
||||
|
||||
ENTRYPOINT ["nginx_ldp.sh", "/usr/local/nginx/sbin/nginx", "-c", "/nginx.conf"]
|
Reference in New Issue
Block a user