28 lines
727 B
Bash
Executable File
28 lines
727 B
Bash
Executable File
#!/bin/bash
|
|
./configure \
|
|
--prefix=/usr/local/nginx/ \
|
|
--sbin-path=/usr/local/sbin \
|
|
--pid-path=/run/nginx.pid \
|
|
--with-http_ssl_module \
|
|
--with-pcre=../requirements/pcre \
|
|
--with-zlib=../requirements/zlib \
|
|
--with-openssl=../requirements/openssl \
|
|
--with-stream \
|
|
--with-http_ssl_module \
|
|
--with-stream_ssl_module \
|
|
--add-module=../requirements/nginx-auth-ldap \
|
|
--add-module=../requirements/headers-more-nginx-module \
|
|
--with-http_image_filter_module \
|
|
--with-http_realip_module \
|
|
--with-http_v2_module \
|
|
--with-http_sub_module \
|
|
--with-mail \
|
|
--with-http_gzip_static_module \
|
|
|
|
|
|
|
|
|
|
#--with-http_auth_request_module \
|
|
# --add-module=../ngx_form_auth \
|
|
# --conf-path=/etc/nginx/nginx.conf \
|