aboutsummaryrefslogtreecommitdiff
path: root/src/config
Commit message (Collapse)AuthorAge
* Remove the torrc.complete file.Sebastian Hahn2010-11-10
| | | | | We haven't been keeping it up to date, and the manpage exists as a replacement for users who want an overview of all available options.
* move to the november 1 maxmind geoip dbRoger Dingledine2010-11-06
|
* Merge remote branch 'origin/maint-0.2.1' into maint-0.2.2Nick Mathewson2010-10-04
|\
| * Update to the October 1 2010 Maxmind GeoLite Country database.Karsten Loesing2010-10-04
| |
* | Correct default for RendPostPeriod in docsJohn Brooks2010-09-21
| |
* | Merge remote branch 'origin/maint-0.2.1'Nick Mathewson2010-09-08
|\|
| * Update to the September 1 2010 Maxmind GeoLite Country database.Karsten Loesing2010-09-08
| |
* | Merge commit 'origin/maint-0.2.1'Nick Mathewson2010-08-03
|\|
| * Update to the August 1 2010 Maxmind GeoLite Country database.Karsten Loesing2010-08-03
| |
* | Don't put a ControlPort without auth in sample bridge torrcSebastian Hahn2010-06-10
| | | | | | | | Thanks Roger for noticing
* | change Bytes to B to fix ticket 1195.Andrew Lewman2010-06-10
| |
* | Merge remote branch 'origin/maint-0.2.1'Nick Mathewson2010-06-07
|\|
| * Update to June 1 2010 Maxmind GeoLite Country database.Karsten Loesing2010-06-07
| |
* | Sample torrc as a bridgeAndrew Lewman2010-06-07
| | | | | | | | | | | | | | | | | | | | | | | | | | | | On Sun, 6 Jun 2010 19:59:56 -0400 Andrew Lewman <andrew@torproject.org> wrote: > attached. let's try this again. From e95c44bc5af90d982e9d95d63e78b2fde67431ed Mon Sep 17 00:00:00 2001 From: Andrew Lewman <andrew@torproject.org> Date: Sun, 6 Jun 2010 19:56:16 -0400 Subject: [PATCH] Create a sample bridge configuration torrc.
* | Merge branch 'maint-0.2.1'Roger Dingledine2010-05-06
|\|
| * move to maxmind geoip dbRoger Dingledine2010-05-06
| |
* | Fix the path to the exit-notice file in torrc.sampleSebastian Hahn2010-02-08
| | | | | | | | | | Also reword it slightly to reflect the fact that no packagers ship the file.
* | Implement DisableAllSwap to avoid putting secret info in page files.Jacob Appelbaum2009-10-27
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | This commit implements a new config option: 'DisableAllSwap' This option probably only works properly when Tor is started as root. We added two new functions: tor_mlockall() and tor_set_max_memlock(). tor_mlockall() attempts to mlock() all current and all future memory pages. For tor_mlockall() to work properly we set the process rlimits for memory to RLIM_INFINITY (and beyond) inside of tor_set_max_memlock(). We behave differently from mlockall() by only allowing tor_mlockall() to be called one single time. All other calls will result in a return code of 1. It is not possible to change DisableAllSwap while running. A sample configuration item was added to the torrc.complete.in config file. A new item in the man page for DisableAllSwap was added. Thanks to Moxie Marlinspike and Chris Palmer for their feedback on this patch. Please note that we make no guarantees about the quality of your OS and its mlock/mlockall implementation. It is possible that this will do nothing at all. It is also possible that you can ulimit the mlock properties of a given user such that root is not required. This has not been extensively tested and is unsupported. I have included some comments for possible ways we can handle this on win32.
* | Revert to the "June 3 2009" ip-to-country file.Roger Dingledine2009-09-24
| | | | | | | | The September one seems to have removed most US IP addresses.
* | Update to the "September 4 2009" ip-to-country file.Roger Dingledine2009-09-21
| |
* | Clean up the accountingmax section in torrc.sampleRoger Dingledine2009-07-16
| | | | | | | | | | Also, suggest a default of 4GB/day (46KB/s) rather than 1GB/day (11.5KB/s). No use asking low.
* | Include AccountingMax in torrc.sampleNick Mathewson2009-07-16
| | | | | | | | | | | | "There's room for one more till the end of creation." -- _Sandman_ (Based on patch from David [edeca]. Closes bug 1036.)
* | Merge commit 'origin/maint-0.2.1'Nick Mathewson2009-06-04
|\|
| * Update the rest of the geoip file.Karsten Loesing2009-06-04
| |
| * Update the geoip fileNick Mathewson2009-06-03
| |
* | Remove all svn metadata minus what I missed.Sebastian Hahn2009-05-05
|/ | | | | Tor doesn't use SVN anymore, making $Revision$, $Id$ and $Date$ meaningless. Remove them without replacement.
* Update to the "April 3 2009" ip-to-country file.Roger Dingledine2009-04-12
| | | | svn:r19307
* put HashedControlPassword and CookieAuthentication explicitly in theRoger Dingledine2009-04-12
| | | | | | | torrc.sample.in, so unix people don't shoot themselves in the foot. svn:r19304
* Update to the "February 26 2009" ip-to-country fileRoger Dingledine2009-03-05
| | | | svn:r18774
* Update to the "January 23 2009" ip-to-country fileRoger Dingledine2009-02-12
| | | | svn:r18503
* give torrc.sample its yearly overhaul. the main change is toRoger Dingledine2009-01-30
| | | | | | | | | merge the 'bridge relay' section into the 'main relay' section, so people stop getting confused about whether they should fill out both sections (they shouldn't). svn:r18348
* Update to the "December 19 2008" ip-to-country fileRoger Dingledine2009-01-06
| | | | svn:r17968
* cleanups on r17500Roger Dingledine2008-12-07
| | | | svn:r17501
* New DirPortFrontPage option that takes an html file and publishes it as "/" ↵Jacob Appelbaum2008-12-07
| | | | | | on the DirPort. Now relay operators can provide a disclaimer without needin to set up a separate webserver. There's a sample disclaimer in contrib/tor-exit-notice.html. svn:r17500
* Update to the "September 1 2008" ip-to-country file.Roger Dingledine2008-09-23
| | | | svn:r16940
* update to june 9 2008 ip-to-country fileRoger Dingledine2008-06-11
| | | | svn:r15124
* Do not ship a fallback-consensus until the related bugs are fixed.Nick Mathewson2008-05-29
| | | | svn:r14794
* say how we generated the geoip fileRoger Dingledine2008-05-28
| | | | svn:r14786
* Fix the rpm build: we need to list all our files in the files section. ↵Nick Mathewson2008-05-28
| | | | | | Also, put fallback-consensus and geoip file in /usr/share/tor/, not in /usr/share/ svn:r14778
* include the geoip file in the tarball, and load it by defaultRoger Dingledine2008-05-28
| | | | | | | | when tor starts. this breaks rpms and maybe other packages. svn:r14764
* add a monster geoip file to src/config, so we can ship it withRoger Dingledine2008-05-28
| | | | | | | all the tors. svn:r14761
* revert r13221 (for now)Roger Dingledine2008-01-26
| | | | svn:r13289
* put the fallback-consensus file back into the tarball.Roger Dingledine2008-01-21
| | | | | | | | this should re-introduce bug 572, and maybe we'll get some actual bug reports this time. svn:r13221
* add a 'bridge relay' config section to the sample torrcRoger Dingledine2007-12-23
| | | | svn:r12937
* r16997@catbus: nickm | 2007-12-06 18:56:33 -0500Nick Mathewson2007-12-06
| | | | | | | Make http://torproject urls into https://torproject urls. Patch from steve. svn:r12708
* r16995@catbus: nickm | 2007-12-06 18:42:53 -0500Nick Mathewson2007-12-06
| | | | | | | patch from steve: replace more tor.eff.org instances with torproject.org svn:r12707
* We were including instructions about what to do with theRoger Dingledine2007-11-11
| | | | | | | | src/config/fallback-consensus file, but we weren't actually including it in the tarball. Disable all of that for now. svn:r12467
* make it data_DATA too. debugging by random mutation.Roger Dingledine2007-11-11
| | | | svn:r12463
* We weren't actually including the src/config/fallback-consensusRoger Dingledine2007-11-10
| | | | | | | file in the tarball. Reported by phobos. svn:r12462
* r14623@tombo: nickm | 2007-11-01 22:25:18 -0400Nick Mathewson2007-11-02
| | | | | | | More tweaks from karsten, with some cleanup and commentary. svn:r12319