mirror of
https://gitlab.torproject.org/tpo/core/tor.git
synced 2024-11-10 21:23:58 +01:00
7f51007678
svn:r3513
36 lines
968 B
Plaintext
36 lines
968 B
Plaintext
# Defaults for tor initscript
|
|
# sourced by /etc/init.d/tor
|
|
# installed at /etc/default/tor by the maintainer scripts
|
|
|
|
#
|
|
# This is a POSIX 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=4096
|
|
|
|
#
|
|
# Sometimes epoll is broken. This happens to be the case on
|
|
# at least the maintainer's desktop box running Linux 2.6.11-rc1
|
|
# on adm64.
|
|
#
|
|
# If tor does not work at all for you, i.e. connection attempts
|
|
# through tor just have forever and never finish, then consider
|
|
# setting EVENT_NOEPOLL, so libevent does not use epoll. If that
|
|
# happens to fix it for you, please let the mainainer (weasel@debian.org)
|
|
# know, mentioning your kernel version, libevent version, and architecture.
|
|
# Thanks!
|
|
#
|
|
# EVENT_NOEPOLL=yes
|
|
# export EVENT_NOEPOLL
|
|
|
|
#
|
|
# Uncomment this if you want to get coredumps
|
|
#
|
|
ulimit -c unlimited
|