Advertisement
Guest User

Untitled

a guest
Jan 22nd, 2020
94
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.14 KB | None | 0 0
  1. ./configure --prefix=/usr/share/nginx \
  2. --sbin-path=/usr/sbin/nginx \
  3. --modules-path=/usr/lib/nginx/modules \
  4. --conf-path=/etc/nginx/nginx.conf \
  5. --error-log-path=/var/log/nginx/error.log \
  6. --http-log-path=/var/log/nginx/access.log \
  7. --pid-path=/run/nginx.pid \
  8. --lock-path=/var/lock/nginx.lock \
  9. --user=www-data \
  10. --group=www-data \
  11. --build=Ubuntu \
  12. --http-client-body-temp-path=/var/lib/nginx/body \
  13. --http-fastcgi-temp-path=/var/lib/nginx/fastcgi \
  14. --http-proxy-temp-path=/var/lib/nginx/proxy \
  15. --http-scgi-temp-path=/var/lib/nginx/scgi \
  16. --http-uwsgi-temp-path=/var/lib/nginx/uwsgi \
  17. --with-pcre=../pcre-8.40 \
  18. --with-pcre-jit \
  19. --with-zlib=../zlib-1.2.11 \
  20. --with-compat \
  21. --with-file-aio \
  22. --with-threads \
  23. --with-http_addition_module \
  24. --with-http_auth_request_module \
  25. --with-http_dav_module \
  26. --with-http_flv_module \
  27. --with-http_gunzip_module \
  28. --with-http_gzip_static_module \
  29. --with-http_mp4_module \
  30. --with-http_random_index_module \
  31. --with-http_realip_module \
  32. --with-http_slice_module \
  33. --with-http_sub_module \
  34. --with-http_stub_status_module \
  35. --with-http_perl_module \
  36. --with-http_v2_module \
  37. --with-http_secure_link_module \
  38. --with-mail \
  39. --with-stream \
  40. --with-stream_realip_module \
  41. --with-debug \
  42. --add-module=/opt/ngx_devel_kit-master \
  43. --add-module=/opt/ngx_brotli \
  44. --with-http_ssl_module \
  45. --with-mail_ssl_module \
  46. --with-stream_ssl_preread_module \
  47. --with-openssl=../openssl-1.1.0f \
  48. --with-openssl-opt=no-nextprotoneg \
  49. --with-stream_ssl_module \
  50. --add-module=/opt/nginx-http-rdns-master \
  51. --with-http_geoip_module
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement