Add Tor config
Signed-off-by: PandaCoderPL <git@pandacoderpl.anonaddy.me>
This commit is contained in:
parent
244c43875b
commit
7e03f9d288
|
@ -4,6 +4,10 @@ All notable changes to this project will be documented in this file.
|
|||
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
|
||||
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
|
||||
|
||||
## [1.6.0] - 2021-11-15
|
||||
### Added
|
||||
- [Tor Config](usr/etc/tor/torrc)
|
||||
|
||||
## [1.5.7] - 2021-11-13
|
||||
### Added
|
||||
- Interactive calculator to Tmux session.
|
||||
|
|
|
@ -21,6 +21,7 @@ Repository with my dotfiles.
|
|||
* [SSH](https://www.openssh.com/) - [config](home/.ssh/config)
|
||||
* [Termux](https://termux.com/) - [termux.properties](home/.termux/termux.properties)
|
||||
* [Tmux](https://github.com/tmux/tmux) - [.tmux.conf](home/.tmux.conf)
|
||||
* [Tor](https://www.torproject.org/) - [torrc](usr/etc/tor/torrc)
|
||||
* [Vim](https://www.vim.org/) - [.vimrc](home/.vimrc)
|
||||
|
||||
## Downloading
|
||||
|
|
|
@ -15,6 +15,7 @@ alias gitconfig='git config --global --edit'
|
|||
alias sshconfig='vim ${HOME}/.ssh/config'
|
||||
alias termuxconfig='vim ${HOME}/.termux/termux.properties'
|
||||
alias tmuxconfig='vim ${HOME}/.tmux.conf'
|
||||
alias torconfig='vim ${PREFIX}/etc/tor/torrc'
|
||||
alias vimconfig='vim ${HOME}/.vimrc'
|
||||
|
||||
# Utils
|
||||
|
|
|
@ -0,0 +1,21 @@
|
|||
AvoidDiskWrites 1
|
||||
ControlPort 0
|
||||
ControlSocket 0
|
||||
HardwareAccel 1
|
||||
NoExec 1
|
||||
SafeLogging 1
|
||||
Sandbox 1
|
||||
TruncateLogFile 1
|
||||
|
||||
AllowNonRFC953Hostnames 0
|
||||
CircuitPadding 1
|
||||
ReducedCircuitPadding 1
|
||||
ClientOnly 1
|
||||
ClientUseIPv6 1
|
||||
ConnectionPadding 1
|
||||
HTTPTunnelPort 8118
|
||||
ReducedConnectionPadding 1
|
||||
DownloadExtraInfo 0
|
||||
EnforceDistinctSubnets 1
|
||||
SocksPort 9050 IsolateClientAddr IsolateSOCKSAuth IsolateClientProtocol IsolateDestPort IsolateDestAddr
|
||||
UseEntryGuards 1
|
Loading…
Reference in New Issue