mirror of
https://github.com/bunkerity/bunkerweb
synced 2026-05-24 01:18:26 +00:00
tor hidden service example
This commit is contained in:
parent
16eab0f631
commit
68d7988551
2 changed files with 43 additions and 0 deletions
38
examples/tor-hidden-service/docker-compose.yml
Normal file
38
examples/tor-hidden-service/docker-compose.yml
Normal file
|
|
@ -0,0 +1,38 @@
|
|||
version: '3'
|
||||
|
||||
services:
|
||||
|
||||
myonion:
|
||||
image: goldy/tor-hidden-service
|
||||
restart: always
|
||||
volumes:
|
||||
- ./hidden-services:/var/lib/tor/hidden_service # .onion address and private key will be located in ./hidden_service
|
||||
environment:
|
||||
- SERVICE1_TOR_SERVICE_HOSTS=80:mywww:80
|
||||
- SERVICE1_TOR_SERVICE_VERSION=3
|
||||
|
||||
mywww:
|
||||
image: bunkerity/bunkerized-nginx
|
||||
restart: always
|
||||
volumes:
|
||||
- ./web-files:/www
|
||||
environment:
|
||||
- BLOCK_TOR_EXIT_NODE=no
|
||||
- BLOCK_ABUSERS=no
|
||||
- BLOCK_PROXIES=no
|
||||
- USE_FAIL2BAN=no
|
||||
- USE_DNSBL=no
|
||||
- USE_WHITELIST_IP=no
|
||||
- USE_WHITELIST_REVERSE=no
|
||||
- USE_BLACKLIST_IP=no
|
||||
- USE_BLACKLIST_REVERSE=no
|
||||
- USE_FAIL2BAN=no
|
||||
- REMOTE_PHP=myphp
|
||||
- REMOTE_PHP_PATH=/app
|
||||
|
||||
myphp:
|
||||
image: php:fpm
|
||||
restart: always
|
||||
volumes:
|
||||
- ./web-files:/app
|
||||
|
||||
5
examples/tor-hidden-service/web-files/index.php
Normal file
5
examples/tor-hidden-service/web-files/index.php
Normal file
|
|
@ -0,0 +1,5 @@
|
|||
<?php
|
||||
|
||||
echo "Hello Onion!";
|
||||
|
||||
?>
|
||||
Loading…
Reference in a new issue