tor.default 948 B

12345678910111213141516171819202122232425262728293031323334
  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.
  11. # (ulimit -n)
  12. #
  13. MAX_FILEDESCRIPTORS=8192
  14. #
  15. # If tor is seriously hogging your CPU, taking away too much cycles from
  16. # other system resources, then you can renice tor. See nice(1) for a
  17. # bit more information. Another way to limit the CPU usage of an Onion
  18. # Router is to set a lower BandwidthRate, as CPU usage is mostly a function
  19. # of the amount of traffic flowing through your node. Consult the torrc(5)
  20. # manual page for more information on setting BandwidthRate.
  21. #
  22. # NICE="--nicelevel 5"
  23. # Additional arguments to pass on tor's command line.
  24. #
  25. # ARGS=""
  26. #
  27. # Uncomment this if you want to get coredumps
  28. #
  29. ulimit -c unlimited