Advertisement
Guest User

command shit

a guest
Sep 17th, 2019
125
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.49 KB | None | 0 0
  1. ./configure --prefix=/etc/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. --pid-path=/var/run/nginx.pid \
  7. --lock-path=/var/run/nginx.lock \
  8. --user=nginx \
  9. --group=nginx \
  10. --build=Ubuntu \
  11. --builddir=nginx-1.15.0 \
  12. --with-select_module \
  13. --with-poll_module \
  14. --with-threads \
  15. --with-file-aio \
  16. --with-http_ssl_module \
  17. --with-http_v2_module \
  18. --with-http_realip_module \
  19. --with-http_addition_module \
  20. --with-http_xslt_module=dynamic \
  21. --with-http_image_filter_module=dynamic \
  22. --with-http_geoip_module=dynamic \
  23. --with-http_sub_module \
  24. --with-http_dav_module \
  25. --with-http_flv_module \
  26. --with-http_mp4_module \
  27. --with-http_gunzip_module \
  28. --with-http_gzip_static_module \
  29. --with-http_auth_request_module \
  30. --with-http_random_index_module \
  31. --with-http_secure_link_module \
  32. --with-http_degradation_module \
  33. --with-http_slice_module \
  34. --with-http_stub_status_module \
  35. --with-http_perl_module=dynamic \
  36. --with-perl_modules_path=/usr/share/perl/5.26.1 \
  37. --with-perl=/usr/bin/perl \
  38. --http-log-path=/var/log/nginx/access.log \
  39. --http-client-body-temp-path=/var/cache/nginx/client_temp \
  40. --http-proxy-temp-path=/var/cache/nginx/proxy_temp \
  41. --http-fastcgi-temp-path=/var/cache/nginx/fastcgi_temp \
  42. --http-uwsgi-temp-path=/var/cache/nginx/uwsgi_temp \
  43. --http-scgi-temp-path=/var/cache/nginx/scgi_temp \
  44. --with-mail=dynamic \
  45. --with-mail_ssl_module \
  46. --with-stream=dynamic \
  47. --with-stream_ssl_module \
  48. --with-stream_realip_module \
  49. --with-stream_geoip_module=dynamic \
  50. --with-stream_ssl_preread_module \
  51. --with-compat \
  52. --with-pcre=../pcre-8.42 \
  53. --with-pcre-jit \
  54. --with-zlib=../zlib-1.2.11 \
  55. --with-openssl=../openssl-1.1.0h \
  56. --with-openssl-opt=no-nextprotoneg \
  57. --with-debug
  58. --add-module=../nginx-rtmp-module
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement