Guest User

Untitled

a guest
May 17th, 2018
143
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.72 KB | None | 0 0
  1. ./configure --prefix=/usr \
  2. --sbin-path=/usr/sbin/nginx \
  3. --conf-path=/etc/nginx/nginx.conf \
  4. --error-log-path=/var/log/nginx/error.log \
  5. --http-log-path=/var/log/nginx/access.log \
  6. --pid-path=/var/run/nginx.pid \
  7. --lock-path=/var/lock/nginx.lock \
  8. --user=www-data \
  9. --group=www-data \
  10. --with-http_realip_module \
  11. --with-rtsig_module \
  12. --with-http_gzip_static_module \
  13. --with-http_stub_status_module \
  14. --with-http_ssl_module \
  15. --without-mail_pop3_module \
  16. --without-mail_imap_module \
  17. --without-mail_smtp_module \
  18. --without-http_ssi_module \
  19. --without-http_geo_module \
  20. --http-client-body-temp-path=/var/cache/nginx/client_body_temp \
  21. --http-proxy-temp-path=/var/cache/nginx/proxy_temp \
  22. --http-fastcgi-temp-path=/var/cache/nginx/fastcgi_temp
Add Comment
Please, Sign In to add comment