-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathDockerfile
More file actions
113 lines (88 loc) · 2.98 KB
/
Dockerfile
File metadata and controls
113 lines (88 loc) · 2.98 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
FROM alpine:3.11
LABEL "maintainer" "R.Smit <reimertsmit@gmail.com>"
######################
# ENVIRONMENT
######################
ENV NGINX_VERSION 1.16.1
######################
# nginx User
######################
RUN addgroup -S nginx && adduser -S -g nginx nginx
######################
# Update and download
######################
WORKDIR /tmp/nginx
RUN apk update && apk add vim curl openssl-dev pcre-dev zlib-dev build-base && \
curl -O http://nginx.org/download/nginx-${NGINX_VERSION}.tar.gz && \
tar -xzvf nginx-${NGINX_VERSION}.tar.gz
######################
# Modify nginx header src file
######################
WORKDIR /tmp/nginx/nginx-${NGINX_VERSION}
COPY ./ngx_http_header_filter_module.c /tmp/nginx/nginx-${NGINX_VERSION}/src/http
COPY ./ngx_http_special_response.c /tmp/nginx/nginx-${NGINX_VERSION}/src/http
######################
# Create nginx directories
######################
RUN mkdir /var/cache/nginx
######################
# Install nginx
######################
RUN ./configure \
--user=nginx \
--group=nginx \
--prefix=/etc/nginx \
--sbin-path=/usr/sbin/nginx \
--modules-path=/usr/lib/nginx/modules \
--conf-path=/etc/nginx/conf/nginx.conf \
--error-log-path=/var/log/nginx/error.log \
--http-log-path=/var/log/nginx/access.log \
--pid-path=/var/run/nginx.pid \
--lock-path=/var/run/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 \
--with-compat \
--with-threads \
--with-http_addition_module \
--with-http_auth_request_module \
--with-http_dav_module \
--with-http_gunzip_module \
--with-http_gzip_static_module \
--with-http_random_index_module \
--with-http_realip_module \
--with-http_secure_link_module \
--with-http_slice_module \
--with-http_ssl_module \
--with-http_stub_status_module \
--with-http_sub_module \
--with-http_v2_module \
--with-stream \
--with-stream_realip_module \
--with-stream_ssl_module \
--with-stream_ssl_preread_module && \
make && make install
######################
# Log Collection
######################
RUN ln -sf /dev/stdout /var/log/nginx/access.log
RUN ln -sf /dev/stderr /var/log/nginx/error.log
WORKDIR /etc/nginx
######################
# NGINX Config File
######################
COPY ./nginx.conf /etc/nginx/conf
COPY ./index.html /etc/nginx/html
COPY ./30x.html /etc/nginx/html
COPY ./40x.html /etc/nginx/html
COPY ./50x.html /etc/nginx/html
######################
# Clean-up and run
######################
RUN apk del build-base && \
rm -rf /var/cache/apk && \
rm -rf /tmp/nginx
EXPOSE 80 443 8443
CMD ["nginx", "-g", "daemon off;"]