Publishing thunix as an onion service: thunixme5v4rnoby.onion

This commit is contained in:
Ubergeek
2019-05-17 17:13:19 +00:00
parent b773f65d27
commit d0a9a68719
5 changed files with 230 additions and 0 deletions

View File

@@ -1,5 +1,24 @@
# Install apache and accoutrements www, irrespective of what role they might have
---
- name: Add apt key for tor project repo
apt_key:
url: https://deb.torproject.org/torproject.org/A3C4F0F979CAA22CDBA8F512EE8CBC9E886DDD89.asc
state: present
- name: Add tor project repo
apt_repository:
repo: 'deb https://deb.torproject.org/torproject.org stretch main'
state: present
filename: tor
update_cache: yes
- name: Add tor project repo
apt_repository:
repo: 'deb-src https://deb.torproject.org/torproject.org stretch main'
state: present
filename: torsrc
update_cache: yes
- name: Install packages for webserver
apt:
name: "{{ packages }}"
@@ -32,4 +51,6 @@
- php7.0-xmlrpc
- php7.0-xsl
- shellinabox
- tor
- torsocks
- yum-utils