diff --git a/README.md b/README.md index 640aeca..6acfa8d 100644 --- a/README.md +++ b/README.md @@ -1,9 +1,9 @@ -tor-socks-proxy +Tor-socks-proxy ======= ![license](https://img.shields.io/badge/license-GPLv3.0-brightgreen.svg?style=flat) [![](https://img.shields.io/docker/pulls/peterdavehello/tor-socks-proxy.svg)](https://hub.docker.com/r/peterdavehello/tor-socks-proxy/) [![](https://images.microbadger.com/badges/image/peterdavehello/tor-socks-proxy.svg)](https://microbadger.com/images/peterdavehello/tor-socks-proxy/) [![](https://images.microbadger.com/badges/version/peterdavehello/tor-socks-proxy.svg)](https://hub.docker.com/r/peterdavehello/tor-socks-proxy/tags/) -The super easy way to setup a tor SOCKS5 proxy server without relay/exit feature. +The super easy way to setup a Tor SOCKS5 proxy server without relay/exit feature. ## How to use? @@ -35,7 +35,7 @@ The super easy way to setup a tor SOCKS5 proxy server without relay/exit feature 3. Configure your client to use it, target on `127.0.0.1` port `9150`(Or the other port you setup in step 1) - Take `curl` as an example, checkout what's your ip address via tor nextwork: + Take `curl` as an example, checkout what's your ip address via Tor nextwork: ```sh $ curl --socks5-hostname 127.0.0.1:9150 ipinfo.io/ip $ curl --socks5-hostname 127.0.0.1:9150 icanhazip.com @@ -43,7 +43,7 @@ The super easy way to setup a tor SOCKS5 proxy server without relay/exit feature $ curl --socks5-hostname 127.0.0.1:9150 whatismyip.akamai.com ``` - Take `ssh` and `nc` as an example, connect to a host via tor: + Take `ssh` and `nc` as an example, connect to a host via Tor: ```sh $ ssh -o ProxyCommand='nc -x 127.0.0.1:9150 %h %p' target.hostname.blah ```