From 2935206d4765edac7665c1ba975379b20379d77a Mon Sep 17 00:00:00 2001 From: clarkzjw Date: Tue, 21 Mar 2017 15:39:51 +0800 Subject: Update Dockerfile --- Dockerfile | 80 +++++++++++++++++++++++++++++++------------------------------- 1 file changed, 40 insertions(+), 40 deletions(-) diff --git a/Dockerfile b/Dockerfile index 93cd2a0..86208ae 100644 --- a/Dockerfile +++ b/Dockerfile @@ -28,46 +28,46 @@ ADD ./nginx.conf /etc/nginx/nginx.conf # Install Nginx RUN \ cd nginx-1.11.9 && \ - ./configure --prefix=/etc/nginx && \ - --sbin-path=/usr/sbin/nginx && \ - --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.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 && \ - --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-threads && \ - --with-stream && \ - --with-stream_ssl_module && \ - --with-http_slice_module && \ - --with-mail && \ - --with-mail_ssl_module && \ - --with-file-aio && \ - --with-http_v2_module && \ - --with-ipv6 && \ - --with-pcre=../pcre-8.40 && \ - --with-openssl=../openssl-1.1.0e && \ - --with-zlib=../zlib-1.2.11 && \ - --add-module=../ngx_http_google_filter_module && \ + ./configure --prefix=/etc/nginx \ + --sbin-path=/usr/sbin/nginx \ + --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.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 \ + --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-threads \ + --with-stream \ + --with-stream_ssl_module \ + --with-http_slice_module \ + --with-mail \ + --with-mail_ssl_module \ + --with-file-aio \ + --with-http_v2_module \ + --with-ipv6 \ + --with-pcre=../pcre-8.40 \ + --with-openssl=../openssl-1.1.0e \ + --with-zlib=../zlib-1.2.11 \ + --add-module=../ngx_http_google_filter_module \ --add-module=../ngx_http_substitutions_filter_module && \ make -j4 && \ make install && \ -- cgit v1.2.3