├── .dockerignore
├── .gitignore
├── tor
├── data
│ └── .gitignore
└── torrc
├── templates
├── static
│ ├── favicon.ico
│ ├── favicon-16x16.png
│ ├── favicon-32x32.png
│ ├── mstile-150x150.png
│ ├── apple-touch-icon.png
│ ├── android-chrome-192x192.png
│ ├── android-chrome-256x256.png
│ ├── browserconfig.xml
│ └── safari-pinned-tab.svg
└── index.html
├── docker-compose.yml
├── docker-compose.arm64.yml
├── docker-compose.tor.yml
├── Dockerfile
├── arm64.Dockerfile
├── .github
└── workflows
│ └── docker-build.yml
├── Dockerfile-optimized
├── .env.example
├── go.mod
├── README.md
├── go.sum
└── main.go
/.dockerignore:
--------------------------------------------------------------------------------
1 | db
2 |
--------------------------------------------------------------------------------
/.gitignore:
--------------------------------------------------------------------------------
1 | db/
2 | .env
3 | wot-relay
4 |
--------------------------------------------------------------------------------
/tor/data/.gitignore:
--------------------------------------------------------------------------------
1 | *
2 | !.gitignore
3 |
--------------------------------------------------------------------------------
/tor/torrc:
--------------------------------------------------------------------------------
1 | HiddenServiceDir /var/lib/tor/relay
2 | HiddenServicePort 80 relay:3334
3 |
--------------------------------------------------------------------------------
/templates/static/favicon.ico:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/bitvora/wot-relay/HEAD/templates/static/favicon.ico
--------------------------------------------------------------------------------
/templates/static/favicon-16x16.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/bitvora/wot-relay/HEAD/templates/static/favicon-16x16.png
--------------------------------------------------------------------------------
/templates/static/favicon-32x32.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/bitvora/wot-relay/HEAD/templates/static/favicon-32x32.png
--------------------------------------------------------------------------------
/templates/static/mstile-150x150.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/bitvora/wot-relay/HEAD/templates/static/mstile-150x150.png
--------------------------------------------------------------------------------
/templates/static/apple-touch-icon.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/bitvora/wot-relay/HEAD/templates/static/apple-touch-icon.png
--------------------------------------------------------------------------------
/templates/static/android-chrome-192x192.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/bitvora/wot-relay/HEAD/templates/static/android-chrome-192x192.png
--------------------------------------------------------------------------------
/templates/static/android-chrome-256x256.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/bitvora/wot-relay/HEAD/templates/static/android-chrome-256x256.png
--------------------------------------------------------------------------------
/templates/static/browserconfig.xml:
--------------------------------------------------------------------------------
1 |
2 |
31 | {{.RelayDescription}} 32 |
33 | 34 | 35 | 39 | {{.RelayURL}} 40 | 41 |