From a58efc6e0a89d637a9df74946248e4fcb90dd04f Mon Sep 17 00:00:00 2001 From: Bob Mottram Date: Fri, 19 Jun 2020 13:49:13 +0100 Subject: [PATCH] Fix qrcode display --- deploy/i2p | 2 +- deploy/onion | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/deploy/i2p b/deploy/i2p index 4d4abb65..efcf6f83 100755 --- a/deploy/i2p +++ b/deploy/i2p @@ -388,7 +388,7 @@ echo "Creating nginx virtual host for http://${I2P_DOMAIN}" ln -s /etc/nginx/sites-available/epicyon-i2p /etc/nginx/sites-enabled/ systemctl restart nginx -echo -n "$I2P_DOMAIN" | qrencode +echo -n "$I2P_DOMAIN" | qrencode -t ANSI 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" diff --git a/deploy/onion b/deploy/onion index 164aaa53..93c97167 100755 --- a/deploy/onion +++ b/deploy/onion @@ -300,7 +300,7 @@ echo "Creating nginx virtual host for ${ONION_DOMAIN}" ln -s "/etc/nginx/sites-available/${username}" /etc/nginx/sites-enabled/ systemctl restart nginx -echo -n "$ONION_DOMAIN" | qrencode +echo -n "$ONION_DOMAIN" | qrencode -t ANSI echo "Your onion Epicyon instance is now installed." echo "In a Tor browser navigate to $ONION_DOMAIN and register an account" exit 0