forked from macbre/docker-nginx-http3
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathDockerfile
More file actions
389 lines (340 loc) · 12.1 KB
/
Dockerfile
File metadata and controls
389 lines (340 loc) · 12.1 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
# https://hg.nginx.org/nginx/file/tip/src/core/nginx.h
ARG NGINX_VERSION=1.11.4
# https://github.com/freenginx/nginx
ARG NGINX_COMMIT=32b19e0a25e1b02172ff446fa0e196452876cacc
ARG NGINX_REV=32b19e0
# https://github.com/google/ngx_brotli
ARG NGX_BROTLI_COMMIT=a71f9312c2deb28875acc7bacfdd5695a111aa53
# https://github.com/google/boringssl
#ARG BORINGSSL_COMMIT=b0ae229f686f2be70689584d1e1c6a727a2cdfab
# https://github.com/nginx/njs
ARG NJS_VERSION=0.9.6
# https://github.com/bellard/quickjs
ARG QUICKJS_COMMIT=fa628f8c523ecac8ce560c081411e91fcaba2d20
# https://github.com/openresty/headers-more-nginx-module#installation
# we want to have https://github.com/openresty/headers-more-nginx-module
ARG HEADERS_MORE_VERSION=0.39
# https://github.com/leev/ngx_http_geoip2_module
ARG GEOIP2_VERSION=3.4
# https://github.com/aperezdc/ngx-fancyindex
ARG FANCYINDEX_COMMIT=cbc0d3fca4f06414612de441399393d4b3bbb315
# https://github.com/tokers/zstd-nginx-module
ARG ZSTDNGINX_COMMIT=f4ba115e0b0eaecde545e5f37db6aa18917d8f4b
# https://www.openssl.org/source/
#ARG VERSION_OPENSSL=openssl-3.5.2
ARG VERSION_OPENSSL=openssl-4.0.0
# https://github.com/PCRE2Project/pcre2
ARG PCRE_VERSION=10.47
# https://github.com/zlib-ng/zlib-ng
ARG ZLIB_VERSION=2.3.3
# NGINX UID / GID
ARG NGINX_USER_UID=100
ARG NGINX_GROUP_GID=101
# Generic CFLAGS across build
ARG CFLAGS_OPT="-O3 -pipe -falign-functions=32 -fdata-sections -ffunction-sections -fomit-frame-pointer -Wno-cast-function-type-mismatch -march=sandybridge"
ARG LDFLAGS_OPT="-O3 -Wl,--strip-all -Wl,--as-needed"
# NGINX Native CC Opt
ARG CC_OPT="-O3 -flto -ffat-lto-objects -fomit-frame-pointer -march=sandybridge -I../boringssl/include -I /usr/src/quickjs -DTCP_FASTOPEN=23"
ARG LD_OPT="-s -Wl,-Bsymbolic-functions -Wl,-z,relro -Wl,-z,now -Wl,--gc-sections -L../boringssl/build -lstdc++ -L /usr/src/quickjs -ljemalloc"
# https://nginx.org/en/docs/http/ngx_http_v3_module.html
ARG CONFIG="\
--build=quic-ech-$NGINX_REV \
--prefix=/etc/nginx \
--sbin-path=/usr/sbin/nginx \
--modules-path=/usr/lib/nginx/modules \
--conf-path=/etc/nginx/nginx.conf \
--error-log-path=/var/log/nginx/error.log \
--http-log-path=/var/log/nginx/access.log \
--pid-path=/var/run/nginx/nginx.pid \
--lock-path=/var/run/nginx/nginx.lock \
--http-client-body-temp-path=/var/cache/nginx/client_temp \
--http-proxy-temp-path=/var/cache/nginx/proxy_temp \
--http-fastcgi-temp-path=/var/cache/nginx/fastcgi_temp \
--http-uwsgi-temp-path=/var/cache/nginx/uwsgi_temp \
--http-scgi-temp-path=/var/cache/nginx/scgi_temp \
--user=nginx \
--group=nginx \
--with-http_ssl_module \
--with-http_realip_module \
--with-http_addition_module \
--with-http_sub_module \
--with-http_dav_module \
--with-http_flv_module \
--with-http_mp4_module \
--with-http_gunzip_module \
--with-http_gzip_static_module \
--with-http_random_index_module \
--with-http_secure_link_module \
--with-http_stub_status_module \
--with-http_auth_request_module \
--with-http_xslt_module=dynamic \
--with-http_image_filter_module=dynamic \
--with-http_geoip_module=dynamic \
--with-http_perl_module=dynamic \
--with-threads \
--with-stream \
--with-stream_ssl_module \
--with-stream_ssl_preread_module \
--with-stream_realip_module \
--with-stream_geoip_module=dynamic \
--with-http_slice_module \
--with-compat \
--with-pcre-jit \
--with-ipv6 \
--with-file-aio \
--with-http_v2_module \
--with-http_v3_module \
--without-http_browser_module \
--without-http_empty_gif_module \
--without-mail_pop3_module \
--without-mail_imap_module \
--without-mail_smtp_module \
--with-openssl=/usr/src/openssl \
--with-openssl-opt=enable-ec_nistp_64_gcc_128 \
--with-openssl-opt=no-ssl2 \
--with-openssl-opt=no-ssl3 \
--with-openssl-opt=no-shared \
--with-openssl-opt=no-weak-ssl-ciphers \
--with-openssl-opt=no-tls-deprecated-ec \
--with-openssl-opt=enable-quic \
--with-openssl-opt=enable-ktls \
--with-pcre=/usr/src/pcre2 \
--with-zlib=/usr/src/zlib-ng \
--add-module=/usr/src/ngx_brotli \
--add-module=/usr/src/headers-more-nginx-module \
--add-module=/usr/src/njs/nginx \
--add-module=/usr/src/ngx_http_fancyindex_module \
--add-module=/usr/src/zstd-nginx-module \
--add-dynamic-module=/usr/src/ngx_http_geoip2_module \
--with-cc=clang \
"
FROM debian:trixie AS base
ARG NGINX_VERSION
ARG NGINX_COMMIT
ARG NGX_BROTLI_COMMIT
ARG HEADERS_MORE_VERSION
ARG NJS_VERSION
ARG QUICKJS_COMMIT
ARG PCRE_VERSION
ARG ZLIB_VERSION
ARG GEOIP2_VERSION
ARG NGINX_USER_UID
ARG NGINX_GROUP_GID
ARG CONFIG
ARG VERSION_OPENSSL
ARG CFLAGS_OPT
ARG LDFLAGS_OPT
ARG CC_OPT
ARG LD_OPT
ENV VERSION_OPENSSL=$VERSION_OPENSSL \
SHA256_OPENSSL=c32cf49a959c4f345f9606982dd36e7d28f7c58b19c2e25d75624d2b3d2f79ac \
SOURCE_OPENSSL=https://github.com/openssl/openssl/releases/download \
CFLAGS="$CFLAGS_OPT" \
CXXFLAGS="$CFLAGS_OPT" \
CPPFLAGS="$CFLAGS_OPT" \
LDFLAGS="$LDFLAGS_OPT" \
CC=clang \
CXX=clang++
# Development environment
RUN \
apt-get update && apt-get install -y --no-install-recommends \
curl \
libc6-dev \
make \
golang \
ninja-build \
mercurial \
libssl-dev \
libpcre2-dev \
zlib1g-dev \
gnupg \
libxslt-dev \
libgd-dev \
libgeoip-dev \
libperl-dev \
autoconf \
libtool \
libzstd-dev \
automake \
git \
g++ \
cmake \
wget \
ca-certificates \
lsb-release \
llvm \
clang \
libmaxminddb-dev \
libjemalloc-dev \
libreadline-dev
WORKDIR /usr/src/
RUN \
echo "Downloading OpenSSL source code ..." && \
curl -L $SOURCE_OPENSSL/$VERSION_OPENSSL/$VERSION_OPENSSL.tar.gz -o openssl.tar.gz && \
echo "${SHA256_OPENSSL} ./openssl.tar.gz" | sha256sum -c - && \
curl -L $SOURCE_OPENSSL/$VERSION_OPENSSL/$VERSION_OPENSSL.tar.gz.asc -o openssl.tar.gz.asc && \
mkdir /usr/src/openssl && \
cd /usr/src/openssl && \
tar -xzf ../openssl.tar.gz --strip-components=1
RUN \
echo "Cloning nginx $NGINX_VERSION (commit $NGINX_COMMIT from 'default' branch) ..." \
# && hg clone -b default --rev $NGINX_COMMIT https://freenginx.org/hg/nginx/ /usr/src/nginx-$NGINX_VERSION
&& mkdir /usr/src/nginx \
&& cd /usr/src/nginx \
&& git init \
&& git remote add origin https://github.com/webserver-llc/angie.git \
&& git fetch --depth 1 origin ${NGINX_COMMIT} \
&& git checkout -q FETCH_HEAD
RUN \
echo "Cloning brotli $NGX_BROTLI_COMMIT ..." \
&& mkdir /usr/src/ngx_brotli \
&& cd /usr/src/ngx_brotli \
&& git init \
&& git remote add origin https://github.com/google/ngx_brotli.git \
&& git fetch --depth 1 origin $NGX_BROTLI_COMMIT \
&& git checkout --recurse-submodules -q FETCH_HEAD \
&& git submodule update --init --depth 1
# hadolint ignore=SC2086
# RUN \
# echo "Cloning boringssl ..." \
# && cd /usr/src \
# && git clone --depth 1 https://boringssl.googlesource.com/boringssl \
# && cd boringssl \
# && git checkout $BORINGSSL_COMMIT
# RUN \
# echo "Building boringssl ..." \
# && cd /usr/src/boringssl \
# && mkdir build \
# && cd build \
# && cmake -GNinja .. \
# && ninja
RUN \
echo "Downloading headers-more-nginx-module ..." \
&& mkdir /usr/src/headers-more-nginx-module \
&& wget -qO- https://github.com/openresty/headers-more-nginx-module/archive/refs/tags/v${HEADERS_MORE_VERSION}.tar.gz \
| tar xz --strip-components=1 -C /usr/src/headers-more-nginx-module
RUN \
echo "Downloading ngx_http_geoip2_module ..." \
&& git clone --depth 1 --branch ${GEOIP2_VERSION} https://github.com/leev/ngx_http_geoip2_module /usr/src/ngx_http_geoip2_module
RUN \
echo "Downloading ngx_http_fancyindex_module ..." \
&& git clone https://github.com/aperezdc/ngx-fancyindex /usr/src/ngx_http_fancyindex_module && cd /usr/src/ngx_http_fancyindex_module && git checkout ${FANCYINDEX_COMMIT}
RUN \
echo "Downloading zstd-nginx-module ..." \
&& git clone https://github.com/tokers/zstd-nginx-module /usr/src/zstd-nginx-module && cd /usr/src/zstd-nginx-module && git checkout ${ZSTDNGINX_COMMIT}
# QuickJS (njs dependency)
RUN \
echo "Cloning and configuring quickjs ..." \
&& mkdir /usr/src/quickjs \
&& cd /usr/src/quickjs \
&& git init \
&& git remote add origin https://github.com/bellard/quickjs \
&& git fetch --depth 1 origin ${QUICKJS_COMMIT} \
&& git checkout -q ${QUICKJS_COMMIT} \
&& make libquickjs.a \
&& echo "quickjs $(cat VERSION)"
RUN \
echo "Cloning and configuring njs ..." \
&& git clone --depth 1 -b ${NJS_VERSION} https://github.com/nginx/njs.git /usr/src/njs \
&& cd /usr/src/njs \
&& ./configure --cc-opt='-I /usr/src/quickjs' --ld-opt="-L /usr/src/quickjs" \
&& make njs \
&& mv build/njs /usr/sbin/njs \
&& echo "njs v$(njs -v)"
RUN \
echo "Cloning pcre2 ..." \
&& git clone --depth 1 --recurse-submodules -b pcre2-${PCRE_VERSION} https://github.com/PCRE2Project/pcre2.git /usr/src/pcre2
RUN \
echo "Cloning and configuring zlib-ng ..." \
&& git clone --depth 1 -b ${ZLIB_VERSION} https://github.com/zlib-ng/zlib-ng.git /usr/src/zlib-ng \
&& sed -i "s/compat=0/compat=1/" /usr/src/zlib-ng/configure \
&& cd /usr/src/zlib-ng \
&& ./configure --zlib-compat
COPY ech-angie.patch /usr/src/nginx/ech-angie.patch
RUN \
echo "Building nginx ..." \
&& mkdir -p /var/run/nginx/ \
&& cd /usr/src/nginx \
&& git apply "ech-angie.patch" \
&& ./configure \
--with-cc-opt="$CC_OPT" \
--with-ld-opt="$LD_OPT" \
$CONFIG \
|| (echo "==== CONFIGURE FAILED ====" && cat objs/autoconf.err && exit 1) \
&& make -j"$(getconf _NPROCESSORS_ONLN)"
RUN \
cd /usr/src/nginx \
&& make install \
&& rm -rf /etc/nginx/html/ \
&& mkdir /etc/nginx/conf.d/ \
&& strip /usr/sbin/nginx* \
&& strip /usr/lib/nginx/modules/*.so \
&& strip /usr/src/openssl/.openssl/bin/openssl \
\
# https://tools.ietf.org/html/rfc7919
# https://github.com/mozilla/ssl-config-generator/blob/master/docs/ffdhe2048.txt
&& wget -q https://ssl-config.mozilla.org/ffdhe2048.txt -O /etc/ssl/dhparam.pem
FROM debian:trixie-slim
ARG NGINX_USER_UID
ARG NGINX_GROUP_GID
COPY --from=base /var/run/nginx/ /var/run/nginx/
# COPY --from=base /tmp/runDeps.txt /tmp/runDeps.txt
COPY --from=base /etc/nginx /etc/nginx
COPY --from=base /usr/lib/nginx/modules/*.so /usr/lib/nginx/modules/
COPY --from=base /usr/sbin/nginx /usr/sbin/
# COPY --from=base /usr/local/lib/perl5/site_perl /usr/local/lib/perl5/site_perl
# COPY --from=base /usr/bin/envsubst /usr/local/bin/envsubst
COPY --from=base /etc/ssl/dhparam.pem /etc/ssl/dhparam.pem
# COPY --from=base /usr/lib/libcrypto.so* /usr/lib/
COPY --from=base /usr/sbin/njs /usr/sbin/njs
# OpenSSL ECH binaries
COPY --from=base /usr/src/openssl/.openssl/bin/openssl /usr/bin/openssl-ech
# Runtime environment
# hadolint ignore=SC2046
RUN \
groupadd --gid $NGINX_GROUP_GID nginx \
&& useradd --uid $NGINX_USER_UID --system --create-home --home-dir /var/cache/nginx --shell /usr/sbin/nologin --gid nginx nginx \
&& apt-get update \
&& apt-get install -y --no-install-recommends \
ca-certificates \
curl \
jq \
libjemalloc2 \
tzdata \
libssl3 \
libxml2 \
libbrotli1 \
libxslt1.1 \
libzstd1 \
wget \
# Clean image
&& apt-get clean autoclean \
&& apt-get autoremove --yes \
&& rm -rf /var/lib/{apt,dpkg,cache,log}/ \
&& ln -s /usr/lib/nginx/modules /etc/nginx/modules \
# forward request and error logs to docker log collector
&& mkdir /var/log/nginx \
&& touch /var/log/nginx/access.log /var/log/nginx/error.log \
&& ln -sf /dev/stdout /var/log/nginx/access.log \
&& ln -sf /dev/stderr /var/log/nginx/error.log
COPY nginx.conf /etc/nginx/nginx.conf
COPY ssl_common.conf /etc/nginx/conf.d/ssl_common.conf
COPY ech-rotate.sh init-ech.sh update-https-records.sh generate-ech-key.sh /usr/local/bin
COPY start-nginx.sh /start-nginx.sh
# Make scripts executable
RUN chmod +x /start-nginx.sh /usr/local/bin/ech-rotate.sh /usr/local/bin/init-ech.sh
# show env
RUN env | sort
# njs version
RUN njs -v
# test the configuration
RUN nginx -V; nginx -t
EXPOSE 8080 8443
STOPSIGNAL SIGTERM
# prepare to switching to non-root - update file permissions of directory containing
# nginx.lock and nginx.pid file
RUN \
chown -R --verbose nginx:nginx \
/var/run/nginx/
USER nginx
CMD ["/start-nginx.sh"]