1
0
mirror of https://github.com/ArcticFoxes-net/Signal-TLS-Proxy synced 2024-09-28 12:14:42 -04:00

Use HTTPS to download NGINX

This commit is contained in:
Kévin Dunglas 2021-02-04 18:14:08 +01:00 committed by Moxie Marlinspike
parent c3ef184c81
commit 39a97dab72
2 changed files with 2 additions and 2 deletions

View File

@ -6,7 +6,7 @@ RUN apt-get update && apt-get -y upgrade && \
WORKDIR /opt
RUN wget http://nginx.org/download/nginx-1.18.0.tar.gz && \
RUN wget https://nginx.org/download/nginx-1.18.0.tar.gz && \
tar -zxvf nginx-1.*.tar.gz && \
cd nginx-1.* && \
./configure --prefix=/opt/nginx --user=nginx --group=nginx --with-http_ssl_module --with-ipv6 --with-threads --with-stream --with-stream_ssl_module --with-stream_ssl_preread_module && \

View File

@ -6,7 +6,7 @@ RUN apt-get update && apt-get -y upgrade && \
WORKDIR /opt
RUN wget http://nginx.org/download/nginx-1.18.0.tar.gz && \
RUN wget https://nginx.org/download/nginx-1.18.0.tar.gz && \
tar -zxvf nginx-1.*.tar.gz && \
cd nginx-1.* && \
./configure --prefix=/opt/nginx --user=nginx --group=nginx --with-http_ssl_module --with-ipv6 --with-threads --with-stream --with-stream_ssl_module --with-stream_ssl_preread_module && \