#!/bin/bash
#
# Provisioner
#
# Configure an onion service
trashman install tor-onion-service
# Configure virtual host for the Onion Service
cat <<-EOF | sudo tee /etc/apache2/sites-available/onion.conf > /dev/null
ServerName localhost
ServerAlias *.onion
DocumentRoot "/srv/shared/site"
AuthType Basic
AuthName "Protected"
AuthUserFile /srv/shared/.htpasswd
Require valid-user
EOF
# Configure virtual host for the local service
cat <<-EOF | sudo tee /etc/apache2/sites-available/local.conf > /dev/null
ServerName protocolos.local
DocumentRoot "/srv/shared/site"
Options Indexes FollowSymLinks
AllowOverride All
Require all granted
EOF
# Enable virtual host
sudo a2ensite onion local
sudo systemctl reload apache2
# Configure PATH
#mkdir -p ~/.custom
#echo 'export PATH=$PATH:/srv/shared/scripts' > ~/.custom/profile