diff options
author | clarkzjw <[email protected]> | 2017-03-21 15:39:51 +0800 |
---|---|---|
committer | GitHub <[email protected]> | 2017-03-21 15:39:51 +0800 |
commit | 2935206d4765edac7665c1ba975379b20379d77a (patch) | |
tree | f8d192a8f2e2e1f6dcc782051b9d16e4df87a59a /Dockerfile | |
parent | 23f277a0c5f96bacd6fbedef7042644476d1dbec (diff) | |
download | nginx-proxy-google-2935206d4765edac7665c1ba975379b20379d77a.tar.gz |
Update Dockerfile
Diffstat (limited to 'Dockerfile')
-rw-r--r-- | Dockerfile | 80 |
1 files changed, 40 insertions, 40 deletions
@@ -28,46 +28,46 @@ ADD ./nginx.conf /etc/nginx/nginx.conf | |||
28 | # Install Nginx | 28 | # Install Nginx |
29 | RUN \ | 29 | RUN \ |
30 | cd nginx-1.11.9 && \ | 30 | cd nginx-1.11.9 && \ |
31 | ./configure --prefix=/etc/nginx && \ | 31 | ./configure --prefix=/etc/nginx \ |
32 | --sbin-path=/usr/sbin/nginx && \ | 32 | --sbin-path=/usr/sbin/nginx \ |
33 | --conf-path=/etc/nginx/nginx.conf && \ | 33 | --conf-path=/etc/nginx/nginx.conf \ |
34 | --error-log-path=/var/log/nginx/error.log && \ | 34 | --error-log-path=/var/log/nginx/error.log \ |
35 | --http-log-path=/var/log/nginx/access.log && \ | 35 | --http-log-path=/var/log/nginx/access.log \ |
36 | --pid-path=/var/run/nginx.pid && \ | 36 | --pid-path=/var/run/nginx.pid \ |
37 | --lock-path=/var/run/nginx.lock && \ | 37 | --lock-path=/var/run/nginx.lock \ |
38 | --http-client-body-temp-path=/var/cache/nginx/client_temp && \ | 38 | --http-client-body-temp-path=/var/cache/nginx/client_temp \ |
39 | --http-proxy-temp-path=/var/cache/nginx/proxy_temp && \ | 39 | --http-proxy-temp-path=/var/cache/nginx/proxy_temp \ |
40 | --http-fastcgi-temp-path=/var/cache/nginx/fastcgi_temp && \ | 40 | --http-fastcgi-temp-path=/var/cache/nginx/fastcgi_temp \ |
41 | --http-uwsgi-temp-path=/var/cache/nginx/uwsgi_temp && \ | 41 | --http-uwsgi-temp-path=/var/cache/nginx/uwsgi_temp \ |
42 | --http-scgi-temp-path=/var/cache/nginx/scgi_temp && \ | 42 | --http-scgi-temp-path=/var/cache/nginx/scgi_temp \ |
43 | --user=nginx && \ | 43 | --user=nginx \ |
44 | --group=nginx && \ | 44 | --group=nginx \ |
45 | --with-http_ssl_module && \ | 45 | --with-http_ssl_module \ |
46 | --with-http_realip_module && \ | 46 | --with-http_realip_module \ |
47 | --with-http_addition_module && \ | 47 | --with-http_addition_module \ |
48 | --with-http_sub_module && \ | 48 | --with-http_sub_module \ |
49 | --with-http_dav_module && \ | 49 | --with-http_dav_module \ |
50 | --with-http_flv_module && \ | 50 | --with-http_flv_module \ |
51 | --with-http_mp4_module && \ | 51 | --with-http_mp4_module \ |
52 | --with-http_gunzip_module && \ | 52 | --with-http_gunzip_module \ |
53 | --with-http_gzip_static_module && \ | 53 | --with-http_gzip_static_module \ |
54 | --with-http_random_index_module && \ | 54 | --with-http_random_index_module \ |
55 | --with-http_secure_link_module && \ | 55 | --with-http_secure_link_module \ |
56 | --with-http_stub_status_module && \ | 56 | --with-http_stub_status_module \ |
57 | --with-http_auth_request_module && \ | 57 | --with-http_auth_request_module \ |
58 | --with-threads && \ | 58 | --with-threads \ |
59 | --with-stream && \ | 59 | --with-stream \ |
60 | --with-stream_ssl_module && \ | 60 | --with-stream_ssl_module \ |
61 | --with-http_slice_module && \ | 61 | --with-http_slice_module \ |
62 | --with-mail && \ | 62 | --with-mail \ |
63 | --with-mail_ssl_module && \ | 63 | --with-mail_ssl_module \ |
64 | --with-file-aio && \ | 64 | --with-file-aio \ |
65 | --with-http_v2_module && \ | 65 | --with-http_v2_module \ |
66 | --with-ipv6 && \ | 66 | --with-ipv6 \ |
67 | --with-pcre=../pcre-8.40 && \ | 67 | --with-pcre=../pcre-8.40 \ |
68 | --with-openssl=../openssl-1.1.0e && \ | 68 | --with-openssl=../openssl-1.1.0e \ |
69 | --with-zlib=../zlib-1.2.11 && \ | 69 | --with-zlib=../zlib-1.2.11 \ |
70 | --add-module=../ngx_http_google_filter_module && \ | 70 | --add-module=../ngx_http_google_filter_module \ |
71 | --add-module=../ngx_http_substitutions_filter_module && \ | 71 | --add-module=../ngx_http_substitutions_filter_module && \ |
72 | make -j4 && \ | 72 | make -j4 && \ |
73 | make install && \ | 73 | make install && \ |