Advertisement
punces

configure squid 3.5 and up

Sep 27th, 2016
1,660
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.28 KB | None | 0 0
  1. ./configure \
  2. --prefix=/usr \
  3. --bindir=/usr/bin \
  4. --sbindir=/usr/sbin \
  5. --libexecdir=/usr/lib/squid \
  6. --sysconfdir=/etc/squid \
  7. --localstatedir=/var \
  8. --libdir=/usr/lib \
  9. --includedir=/usr/include \
  10. --datadir=/usr/share/squid \
  11. --mandir=/usr/share/man \
  12. --with-logdir=/var/log/squid \
  13. --with-pid-file=/var/run/squid.pid \
  14. --with-openssl \
  15. --enable-icmp \
  16. --enable-wccp \
  17. --enable-wccpv2 \
  18. --disable-kqueue \
  19. --disable-esi \
  20. --disable-arch-native \
  21. --disable-ipv6 \
  22. --enable-poll \
  23. --enable-ident-lookups \
  24. --enable-storeio=aufs,diskd,ufs,rock \
  25. --enable-underscores \
  26. --enable-http-violations \
  27. --enable-removal-policies=heap,lru \
  28. --enable-delay-pools \
  29. --enable-linux-netfilter \
  30. --enable-snmp \
  31. --enable-auth \
  32. --enable-auth-basic \
  33. --enable-auth-digest \
  34. --enable-auth-negotiate \
  35. --enable-auth-ntlm \
  36. --enable-log-daemon-helpers \
  37. --enable-url-rewrite-helpers \
  38. --enable-storeid-rewrite-helpers \
  39. --enable-build-info \
  40. --enable-eui \
  41. --enable-async-io=16 \
  42. --enable-unlinkd \
  43. --enable-epoll \
  44. --enable-select \
  45. --enable-cache-digests \
  46. --enable-forw-via-db \
  47. --enable-htcp \
  48. --enable-kill-parent-hack \
  49. --enable-icap-client \
  50. --enable-ecap \
  51. --enable-zph-qos \
  52. --with-dl \
  53. --with-filedescriptors=65536 \
  54. --with-large-files \
  55. --enable-ltdl-convenience
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement