This commit is contained in:
poma 2020-05-24 02:39:47 +03:00
commit 69e19383e4
No known key found for this signature in database
GPG Key ID: BA20CB01FE165657
7 changed files with 27 additions and 0 deletions

3
.gitignore vendored Normal file
View File

@ -0,0 +1,3 @@
.gitsecret/keys/random_seed
!*.secret
private_key

BIN
.gitsecret/keys/pubring.kbx Normal file

Binary file not shown.

BIN
.gitsecret/keys/trustdb.gpg Normal file

Binary file not shown.

View File

@ -0,0 +1 @@
private_key:fb11174f0d4234f11841b67461756721158e934cccf3281dc85b810c8af90b42

4
Dockerfile Normal file
View File

@ -0,0 +1,4 @@
FROM nginx:alpine
RUN apk add git
RUN rm -rf /usr/share/nginx/html
RUN git clone https://github.com/tornadocash/ui-minified /usr/share/nginx/html

19
docker-compose.yml Normal file
View File

@ -0,0 +1,19 @@
version: '2'
services:
web:
build: .
restart: always
tor:
image: strm/tor
restart: always
depends_on:
- web
environment:
LISTEN_PORT: 80
REDIRECT: web:80
# tornaw7ltlqw544t.onion
PRIVATE_KEY: |
-----BEGIN RSA PRIVATE KEY-----
...
-----END RSA PRIVATE KEY-----

BIN
private_key.secret Normal file

Binary file not shown.