Skip to content

Instantly share code, notes, and snippets.

@tyriis
Last active November 21, 2017 11:43
Show Gist options
  • Save tyriis/770d4ff2214bdf887be76c2e99ac08fd to your computer and use it in GitHub Desktop.
Save tyriis/770d4ff2214bdf887be76c2e99ac08fd to your computer and use it in GitHub Desktop.
nginx configure
./configure \
--prefix=/etc/nginx \
--sbin-path=/usr/sbin/nginx \
--conf-path=/data/nginx/nginx.conf \
--error-log-path=/data/nginx/log/error.log \
--http-log-path=/data/nginx/log/access.log \
--pid-path=/var/run/nginx.pid \
--lock-path=/var/run/nginx.lock \
--http-client-body-temp-path=/data/nginx/cache/client_temp \
--http-proxy-temp-path=/data/nginx/cache/proxy_temp \
--http-fastcgi-temp-path=/data/nginx/cache/fastcgi_temp \
--http-uwsgi-temp-path=/data/nginx/cache/uwsgi_temp \
--http-scgi-temp-path=/data/nginx/cache/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-mail \
--with-mail_ssl_module \
--with-file-aio \
--with-http_v2_module \
--with-threads \
--with-stream \
--with-stream_ssl_module \
--with-http_slice_module
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment