mirror of
https://gitlab.torproject.org/tpo/core/tor.git
synced 2024-11-10 21:23:58 +01:00
979c71632d
* Set default ulimit -n to 8k instead of 4k in /etc/default/tor. svn:r5852
35 lines
948 B
Plaintext
35 lines
948 B
Plaintext
# Defaults for tor initscript
|
|
# sourced by /etc/init.d/tor
|
|
# installed at /etc/default/tor by the maintainer scripts
|
|
|
|
#
|
|
# This is a bash shell fragment
|
|
#
|
|
RUN_DAEMON="yes"
|
|
|
|
#
|
|
# Servers sometimes may need more than the default 1024 file descriptors
|
|
# if they are very busy and have many clients connected to them.
|
|
# (ulimit -n)
|
|
#
|
|
MAX_FILEDESCRIPTORS=8192
|
|
|
|
#
|
|
# If tor is seriously hogging your CPU, taking away too much cycles from
|
|
# other system resources, then you can renice tor. See nice(1) for a
|
|
# bit more information. Another way to limit the CPU usage of an Onion
|
|
# Router is to set a lower BandwidthRate, as CPU usage is mostly a function
|
|
# of the amount of traffic flowing through your node. Consult the torrc(5)
|
|
# manual page for more information on setting BandwidthRate.
|
|
#
|
|
# NICE="--nicelevel 5"
|
|
|
|
# Additional arguments to pass on tor's command line.
|
|
#
|
|
# ARGS=""
|
|
|
|
#
|
|
# Uncomment this if you want to get coredumps
|
|
#
|
|
ulimit -c unlimited
|