forked from logan/dotfiles
Added Tor support to SSH
This commit is contained in:
parent
a9517e3fbe
commit
b6ee44bc5d
3 changed files with 7 additions and 0 deletions
2
.gitignore
vendored
2
.gitignore
vendored
|
@ -4,6 +4,8 @@
|
||||||
!.config/**
|
!.config/**
|
||||||
!.icons/
|
!.icons/
|
||||||
!.icons/**
|
!.icons/**
|
||||||
|
!.ssh/
|
||||||
|
!.ssh/**
|
||||||
!.vimrc
|
!.vimrc
|
||||||
!.Xresources
|
!.Xresources
|
||||||
!.xinitrc
|
!.xinitrc
|
||||||
|
|
2
.ssh/.gitignore
vendored
Normal file
2
.ssh/.gitignore
vendored
Normal file
|
@ -0,0 +1,2 @@
|
||||||
|
*
|
||||||
|
!config
|
3
.ssh/config
Normal file
3
.ssh/config
Normal file
|
@ -0,0 +1,3 @@
|
||||||
|
# Generic configuration for all .onion hosts that proxies onion traffic through the local tor service
|
||||||
|
Host *.onion
|
||||||
|
ProxyCommand /bin/nc -xlocalhost:9050 -X5 %h %p
|
Loading…
Reference in a new issue