Add I2PD config
Signed-off-by: PandaCoderPL <git@pandacoderpl.anonaddy.me>
This commit is contained in:
parent
b853281ee0
commit
73bb9823fd
|
@ -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/),
|
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).
|
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
|
||||||
|
|
||||||
|
## [1.7.0] - 2021-11-19
|
||||||
|
### Added
|
||||||
|
- [I2PD Config](home/.i2pd/i2pd.conf)
|
||||||
|
|
||||||
## [1.6.2] - 2021-11-17
|
## [1.6.2] - 2021-11-17
|
||||||
### Added
|
### Added
|
||||||
- Code to include secret config in [Tor Config](usr/etc/tor/torrc)
|
- Code to include secret config in [Tor Config](usr/etc/tor/torrc)
|
||||||
|
|
|
@ -18,6 +18,7 @@ Repository with my dotfiles.
|
||||||
* [Bash](http://www.gnu.org/software/bash/) - [
|
* [Bash](http://www.gnu.org/software/bash/) - [
|
||||||
.bashrc](home/.bashrc)
|
.bashrc](home/.bashrc)
|
||||||
* [Git](https://git-scm.com/) - [config](home/.config/git/config)
|
* [Git](https://git-scm.com/) - [config](home/.config/git/config)
|
||||||
|
* [I2PD](https://i2pd.website/) - [i2pd.conf](home/.i2pd/i2pd.conf)
|
||||||
* [SSH](https://www.openssh.com/) - [config](home/.ssh/config)
|
* [SSH](https://www.openssh.com/) - [config](home/.ssh/config)
|
||||||
* [Termux](https://termux.com/) - [termux.properties](home/.termux/termux.properties)
|
* [Termux](https://termux.com/) - [termux.properties](home/.termux/termux.properties)
|
||||||
* [Tmux](https://github.com/tmux/tmux) - [.tmux.conf](home/.tmux.conf)
|
* [Tmux](https://github.com/tmux/tmux) - [.tmux.conf](home/.tmux.conf)
|
||||||
|
|
|
@ -12,6 +12,7 @@ fi
|
||||||
# Config
|
# Config
|
||||||
alias bashconfig='vim ${HOME}/.bashrc'
|
alias bashconfig='vim ${HOME}/.bashrc'
|
||||||
alias gitconfig='git config --global --edit'
|
alias gitconfig='git config --global --edit'
|
||||||
|
alias i2pdconfig='vim ${HOME}/.i2pd/i2pd.conf'
|
||||||
alias sshconfig='vim ${HOME}/.ssh/config'
|
alias sshconfig='vim ${HOME}/.ssh/config'
|
||||||
alias termuxconfig='vim ${HOME}/.termux/termux.properties'
|
alias termuxconfig='vim ${HOME}/.termux/termux.properties'
|
||||||
alias tmuxconfig='vim ${HOME}/.tmux.conf'
|
alias tmuxconfig='vim ${HOME}/.tmux.conf'
|
||||||
|
|
|
@ -0,0 +1,10 @@
|
||||||
|
daemon = false
|
||||||
|
ipv4 = true
|
||||||
|
ipv6 = true
|
||||||
|
share = 100
|
||||||
|
[http]
|
||||||
|
enabled = false
|
||||||
|
[httpproxy]
|
||||||
|
port = 4444
|
||||||
|
[socksproxy]
|
||||||
|
port = 4447
|
Loading…
Reference in New Issue