tor.default 1.2 KB

123456789101112131415161718192021222324252627282930313233343536373839
  1. # Defaults for tor initscript
  2. # sourced by /etc/init.d/tor
  3. # installed at /etc/default/tor by the maintainer scripts
  4. #
  5. # This is a bash shell fragment
  6. #
  7. RUN_DAEMON="yes"
  8. #
  9. # Servers sometimes may need more than the default 1024 file descriptors
  10. # if they are very busy and have many clients connected to them. The top
  11. # servers as of early 2008 regularly have more than 10000 connected
  12. # clients.
  13. # (ulimit -n)
  14. #
  15. # (the default varies as it depends on the number of available system-wide file
  16. # descriptors. See the init script in /etc/init.d/tor for details.)
  17. #
  18. # MAX_FILEDESCRIPTORS=
  19. #
  20. # If tor is seriously hogging your CPU, taking away too much cycles from
  21. # other system resources, then you can renice tor. See nice(1) for a
  22. # bit more information. Another way to limit the CPU usage of an Onion
  23. # Router is to set a lower BandwidthRate, as CPU usage is mostly a function
  24. # of the amount of traffic flowing through your node. Consult the torrc(5)
  25. # manual page for more information on setting BandwidthRate.
  26. #
  27. # NICE="--nicelevel 5"
  28. # Additional arguments to pass on tor's command line.
  29. #
  30. # ARGS=""
  31. #
  32. # Uncomment this if you want to get coredumps
  33. #
  34. ulimit -c unlimited