Fix qrcode display

main
Bob Mottram 2020-06-19 13:49:13 +01:00
parent 32bb26c02f
commit a58efc6e0a
2 changed files with 2 additions and 2 deletions

View File

@ -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"

View File

@ -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