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.

57 lines
1.5 KiB

  1. # To use Obfsproxy with Tor, follow the instructions at:
  2. #
  3. # https://www.torproject.org/projects/obfsproxy-instructions.html.en
  4. #
  5. # instead of setting up a separate instance of Obfsproxy.
  6. config obfsproxy 'obfsproxy'
  7. # Set to 1 to enable this instance
  8. option enabled 0
  9. # One of: managed, dummy, b64, obfs2, obfs3, scramblesuit
  10. option transport 'scramblesuit'
  11. # Shared secret / password
  12. # For obfs2 (as the shared secret parameter) and scramblesuit only
  13. option password 'EXAMPLEPASSWORDNOTREAL'
  14. # One of: server, ext_server, client, socks
  15. option mode 'socks'
  16. # Destination address
  17. # Required for all modes except 'socks'
  18. #option dest_host '0.0.0.0'
  19. #option dest_port '80'
  20. # Extended ORPort authentication cookie file location
  21. # Required for 'ext_server' mode
  22. #option ext_cookie_file ''
  23. # Listener address
  24. option listen_host '127.0.0.1'
  25. option listen_port '8080'
  26. # Set to log to a file instead of syslog
  27. #option log_file '/var/log/obfsproxy.log'
  28. # Minimum logging severity
  29. # One of: error, warning, info, debug
  30. #option log_min_severity 'info'
  31. # Set to 1 to disable logging
  32. #option no_log 0
  33. # Set to 1 to disable safe (scrubbed address) logging
  34. #option no_safe_logging 0
  35. # Run as a different user
  36. #option user 'nobody'
  37. # Outgoing proxy
  38. # proxy_scheme is one of: socks4a, socks5, http
  39. # txsocksx is required for socks4a or socks5
  40. #option proxy_scheme ''
  41. #option proxy_username ''
  42. #option proxy_password ''
  43. #option proxy_host ''
  44. #option proxy_port ''