-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy path.seed-config.yaml
102 lines (83 loc) · 3.05 KB
/
.seed-config.yaml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
project:
name: "Torproxy"
oneLiner: "An easy way to proxy your http requests through the onion network"
state: "beta"
image: ""
website: "https://torproxy.okkur.org"
description: |
Route your http requests through the onion network without Tor browser
version: "v0.3.1"
vision:
type: "community"
overview: |
Providing a fast and simple way to proxy your http requests through the onion network
items:
- "Simple and minimal config"
- "Proxy multiple hosts to a single endpoint"
concept: "Torproxy's core concept is to provide a simple way to proxy your http requsts using Caddy without needing to write complex logics and config"
aim: "Our aim is to provide a secure and easy way to access onion network on any device."
contributionLinks:
issueTemplate: "/.github/ISSUE_TEMPLATE.md"
starterIssues: "https://github.com/okkur/torproxy/labels/starter%20issue"
supportLinks:
documentation: "https://torproxy.okkur.org/docs"
readme:
usageExample: |
Note: The `master` branch is using [Caddy v2](https://caddyserver.com/), if you
want to use Torproxy with previous caddy versions, check the `caddy-v1` branch.
If you want Torproxy to start a fresh instance of Tor, you need to install Tor
on your machine. Take a look at the [Tor download instructions](https://www.torproject.org/download/)
You can get torproxy as a plugin on Caddy's `v1` [build server](https://caddyserver.com/download).
Or install torproxy's `v2` version using `go get`:
```
go get go.okkur.org/torproxy/cmd/torproxy
```
Create a config file like the example below. For more information about the
available config options, check the [Configuration](/docs/configuration.md) page.
```
example.test {
torproxy example.test somewhereonthe.onion
}
```
You can run torproxy with Caddyfile config adapter using this command:
```
torproxy start -config torproxy.config -adapter caddyfile
```
docs:
development: |
Run the following command to get torproxy's source code and switch your working directory to the torproxy repository
```
git clone github.com/okkur/torproxy && cd torproxy
```
Then run the following command to build torproxy
```
make build
```
Do not forget to install Tor itself on your machine since torproxy needs that to operate correctly.
emails:
commercialSupport: "[email protected]"
security: "[email protected]"
coc: "[email protected]"
copyright:
owner: "The Torproxy authors"
year: "2019"
cla:
copyrightHolder: "nzt.ventures GmbH"
mail: "[email protected]"
maintainers:
- name: "Michael Grosser"
nick: "stp-ip"
repo:
link: "https://torproxy.okkur.org/code"
type: "Github"
badges:
- image: "https://img.shields.io/badge/state-beta-blue.svg"
alt: "state"
- image: "https://img.shields.io/github/release/okkur/torproxy.svg"
link: "https://torproxy.okkur.org/releases/"
alt: "release"
- image: "https://img.shields.io/github/license/okkur/torproxy.svg"
link: "LICENSE"
alt: "license"
reposeed:
configVersion: "v1"