-
Notifications
You must be signed in to change notification settings - Fork 9
/
configure.sh
executable file
·31 lines (30 loc) · 1002 Bytes
/
configure.sh
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
#!/bin/bash -e
./configure \
--conf-path=/etc/nginx/nginx.conf \
--error-log-path=/var/log/nginx/error.log \
--pid-path=/run/nginx.pid \
--sbin-path=/usr/local/sbin \
--with-http_gzip_static_module \
--with-http_stub_status_module \
--with-http_v2_module \
--without-http_auth_basic_module \
--without-http_browser_module \
--without-http_charset_module \
--without-http_empty_gif_module \
--without-http_geo_module \
--without-http_grpc_module \
--without-http_limit_conn_module \
--without-http_limit_req_module \
--without-http_memcached_module \
--without-http_mirror_module \
--without-http_proxy_module \
--without-http_referer_module \
--without-http_scgi_module \
--without-http_split_clients_module \
--without-http_upstream_hash_module \
--without-http_upstream_ip_hash_module \
--without-http_upstream_keepalive_module \
--without-http_upstream_least_conn_module \
--without-http_upstream_zone_module \
--without-http_userid_module \
--without-http_uwsgi_module