You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

43 lines
1.8 KiB

  1. # this file support all available configuration options of
  2. # Privoxy web-proxy
  3. # the scripts move all options to the final privoxy readable configuration file
  4. #
  5. # !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
  6. # !!! privoxy uses "-" in option names but uci only support "_" !!!
  7. # !!! privoxy "listen-address" must be uci "listen_address" !!!
  8. # !!! !!!
  9. # !!! if you add entries please use !!!
  10. # !!! option for options with one parameter (option confdir) !!!
  11. # !!! list for options with multiple parameters (list listen_address) !!!
  12. # !!! !!!
  13. # !!! special handling for debug option !!!
  14. # !!! privoxy option "debug 1024" must be uci option debug_1024 '1' !!!
  15. # !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
  16. #
  17. config privoxy 'privoxy'
  18. option confdir '/etc/privoxy'
  19. option logdir '/var/log'
  20. option logfile 'privoxy.log'
  21. list filterfile 'default.filter'
  22. list actionsfile 'match-all.action'
  23. list actionsfile 'default.action'
  24. # list actionsfile 'user.action'
  25. list listen_address '127.0.0.1:8118'
  26. list listen_address '192.168.1.1:8118'
  27. option toggle '1'
  28. option enable_remote_toggle '1'
  29. option enable_remote_http_toggle '0'
  30. option enable_edit_actions '1'
  31. option enforce_blocks '0'
  32. option buffer_limit '4096'
  33. option forwarded_connect_retries '0'
  34. option accept_intercepted_requests '0'
  35. option allow_cgi_request_crunching '0'
  36. option split_large_forms '0'
  37. option keep_alive_timeout '300'
  38. option socket_timeout '300'
  39. list permit_access '192.168.1.0/24'
  40. option debug_1 '0'
  41. option debug_1024 '0'
  42. option debug_4096 '1'
  43. option debug_8192 '1'