https://github.com/technicallyty/tornado-hacker
hackerman.jpeg
https://github.com/technicallyty/tornado-hacker
Last synced: 10 months ago
JSON representation
hackerman.jpeg
- Host: GitHub
- URL: https://github.com/technicallyty/tornado-hacker
- Owner: technicallyty
- Created: 2021-04-26T23:45:29.000Z (about 5 years ago)
- Default Branch: gh-pages
- Last Pushed: 2021-04-26T23:47:04.000Z (about 5 years ago)
- Last Synced: 2024-10-29T07:41:46.532Z (over 1 year ago)
- Language: JavaScript
- Size: 47.6 MB
- Stars: 1
- Watchers: 2
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- Governance: governance/create/index.html
Awesome Lists containing this project
README
## How to use
Step 1. Clone repository
```
git clone https://github.com/tornadocash/ui-minified.git
cd ui-minified
```
Step 2. Serve the folder with your favorite http server
```
python -m SimpleHTTPServer 8080
```
Or use any other http web server, such as https://www.npmjs.com/package/http-server
Step 3. Open your web browser at http://localhost:8080
## Running a TOR service
If you wish to serve tornado cash UI on an .onion domain, there is an easy way to do it using docker-compose. Paste the following into `docker-compose.yml` and run `docker-compose up -d`
```yaml
version: '2'
services:
tornado_ui:
image: tornadocash/ui
restart: always
container_name: tornado_ui
watchtower:
image: v2tec/watchtower
restart: always
volumes:
- /var/run/docker.sock:/var/run/docker.sock
command: --interval 60 tornado_ui
tor:
image: strm/tor
restart: always
depends_on: [ tornado_ui ]
environment:
LISTEN_PORT: 80
REDIRECT: tornado_ui:80
# Generate a new key with
# docker run --rm --entrypoint shallot strm/tor-hiddenservice-nginx ^torn
PRIVATE_KEY: |
-----BEGIN RSA PRIVATE KEY-----
...
-----END RSA PRIVATE KEY-----
```