Show qr code for deployed domains

main
Bob Mottram 2020-06-19 13:01:29 +01:00
parent 40e52d0744
commit 330b424ff4
2 changed files with 6 additions and 4 deletions

View File

@ -54,7 +54,7 @@ if [ -f /usr/bin/pacman ]; then
pacman -S --noconfirm python-pip python-pysocks python-pycryptodome \
imagemagick python-pillow python-requests \
perl-image-exiftool python-numpy python-dateutil \
certbot flake8 git i2pd wget
certbot flake8 git i2pd wget qrencode
pip3 install pyLD
else
apt-get update
@ -63,7 +63,7 @@ else
python3-numpy python3-pil.imagetk python3-pip \
python3-setuptools python3-socks python3-idna \
libimage-exiftool-perl python3-flake8 python3-pyld \
nginx git i2pd wget
nginx git i2pd wget qrencode
fi
echo 'Cloning the epicyon repo'
@ -386,6 +386,7 @@ echo "Creating nginx virtual host for http://${I2P_DOMAIN}"
ln -s /etc/nginx/sites-available/epicyon /etc/nginx/sites-enabled/
systemctl restart nginx
echo -n "$I2P_DOMAIN" | qrencode
echo "Your Epicyon i2p instance is now installed."
echo 'In Firefox see preferences/network settings, manual proxy and uncheck DNS over HTTPS. In about:config and find the property media.peerConnection.ice.proxy_only and set it to true.'
echo "In a browser proxied through 127.0.0.1 port 4444 navigate to http://${I2P_DOMAIN} and register an account"

View File

@ -35,7 +35,7 @@ if [ -f /usr/bin/pacman ]; then
pacman -S --noconfirm tor python-pip python-pysocks python-pycryptodome \
imagemagick python-pillow python-requests \
perl-image-exiftool python-numpy python-dateutil \
certbot flake8 git
certbot flake8 git qrencode
pip3 install pyLD
else
apt-get update
@ -44,7 +44,7 @@ else
python3-numpy python3-pil.imagetk python3-pip \
python3-setuptools python3-socks python3-idna \
libimage-exiftool-perl python3-flake8 python3-pyld \
tor nginx git
tor nginx git qrencode
fi
echo 'Cloning the epicyon repo'
@ -298,6 +298,7 @@ echo "Creating nginx virtual host for ${ONION_DOMAIN}"
ln -s /etc/nginx/sites-available/epicyon /etc/nginx/sites-enabled/
systemctl restart nginx
echo -n "$ONION_DOMAIN" | qrencode
echo "Your onion Epicyon instance is now installed."
echo "In a Tor browser navigate to $ONION_DOMAIN and register an account"
exit 0