You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
|
|
#!/bin/bash
|
|
|
|
# Build script for Slackware
|
|
|
|
# Build infos
|
|
|
|
--user=nobody \
|
|
|
|
--group=nogroup \
|
|
|
|
--error-log-path=/var/log/nginx/error.log \
|
|
|
|
--http-log-path=/var/log/nginx/access.log \
|
|
|
|
--http-client-body-temp-path=/var/lib/nginx/client_body \
|
|
|
|
--http-proxy-temp-path=/var/lib/nginx/proxy \
|
|
|
|
--http-fastcgi-temp-path=/var/lib/nginx/fastcgi \
|
|
|
|
--http-uwsgi-temp-path=/var/lib/nginx/uwsgi \
|
|
|
|
--http-scgi-temp-path=/var/lib/nginx/scgi \
|
|
|
|
--with-file-aio \
|
|
|
|
--with-ipv6 \
|
|
|
|
--with-select_module \
|
|
|
|
--with-poll_module \
|
|
|
|
--with-http_ssl_module \
|
|
|
|
--with-http_realip_module \
|
|
|
|
--with-http_addition_module \
|
|
|
|
--with-http_xslt_module \
|
|
|
|
--with-http_image_filter_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_degradation_module \
|
|
|
|
--with-http_stub_status_module \
|
|
|
|
--with-http_auth_request_module \
|
|
|
|
--with-mail \
|
|
|
|
|