Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
Tor
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Container Registry
Model registry
Monitor
Incidents
Service Desk
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
The Tor Project
Core
Tor
Commits
dda75e8f
Commit
dda75e8f
authored
20 years ago
by
Nick Mathewson
Browse files
Options
Downloads
Patches
Plain Diff
Document new config options in torrc.sample.in
svn:r1944
parent
66881d57
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
src/config/torrc.sample.in
+30
-1
30 additions, 1 deletion
src/config/torrc.sample.in
with
30 additions
and
1 deletion
src/config/torrc.sample.in
+
30
−
1
View file @
dda75e8f
...
...
@@ -7,6 +7,29 @@ RouterFile @CONFDIR@/dirservers
# Comment out if you don't want to allow applications to connect.
SocksPort 9050
SocksBindAddress 127.0.0.1 # accept connections only from localhost
#SocksBindAddress 192.168.0.1:9100 # listen on a chosen IP/port
# Exit policies to allow/deny SOCKS requests based on IP. By default,
# we accept all requests to SocksBindAddress.
#
#SocksPolicy accept 192.168.0.1/16:*
#SocksPolicy reject *:*
# By default, we send log messages to the command line. If you want
# them to go somewhere else, uncomment one or more of these example
# configurations.
### Send all messages of level 'warn' or higher to /var/log/tor/warnings
#LogFile /var/log/tor/warnings
#LogLevel warn
### Send all debug and info messages to /var/log/tor/debug
#LogFile /var/log/tor/debug
#LogLevel debug-info
### Send all debug messages ONLY to /var/log/tor/debug
#LogFile /var/log/tor/debug
#LogLevel debug-debug
# Uncomment this to start the process in the background
#RunAsDaemon 1
##################### Below is just for servers #####################
...
...
@@ -22,12 +45,18 @@ SocksBindAddress 127.0.0.1 # accept connections only from localhost
#ORPort 9001 # where to listen for tor connections
#ORBindAddress 0.0.0.0 # accept connections from anywhere
#ORBindAddress 0.0.0.0:9090 # accept connections from anywhere, and
# listen on a port other than the one we
# advertised.
## A comma-separated list of exit policies. If you want to *replace*
## the default exit policy, end this with either a reject *:* or an
## accept *:*. Otherwise, you're *augmenting* (prepending to) the
## default exit policy. Leave commented to just use the default.
#ExitPolicy accept *:6660-6667,reject *:*
#ExitPolicy accept *:6660-6667
#ExitPolicy reject 192.168.0.1:*
#ExitPolicy reject *:*
##################### Below is just for location-hidden services ###
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment