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.

44 lines
1.9 KiB

  1. # this file support all available configuration options of Privoxy web-proxy
  2. # the scripts move all options to the final privoxy readable configuration file
  3. #
  4. # !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
  5. # !!! privoxy uses "-" in option names but uci only support "_" !!!
  6. # !!! privoxy "listen-address" must be uci "listen_address" !!!
  7. # !!! !!!
  8. # !!! if you add entries please use !!!
  9. # !!! option for options with one parameter (option confdir) !!!
  10. # !!! list for options with multiple parameters (list listen_address) !!!
  11. # !!! !!!
  12. # !!! special handling for debug option !!!
  13. # !!! privoxy option "debug 1024" must be uci option debug_1024 '1' !!!
  14. # !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
  15. #
  16. config privoxy 'privoxy'
  17. option confdir '/etc/privoxy'
  18. option logdir '/var/log'
  19. option logfile 'privoxy.log'
  20. list filterfile 'default.filter'
  21. # list filterfile 'user.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_512 '1'
  42. option debug_1024 '0'
  43. option debug_4096 '1'
  44. option debug_8192 '1'