mirror of
https://github.com/raspiblitz/raspiblitz.git
synced 2025-04-04 09:58:26 +02:00
#214 make TOR default for now
This commit is contained in:
parent
d1c83f5a05
commit
76b03ff513
@ -5,40 +5,42 @@ source /mnt/hdd/raspiblitz.conf
|
||||
# script to set up nginx and the SSL certificate for BTCPay Server
|
||||
# calls the config.scripts/internet.hiddenservice.sh for the Tor connection
|
||||
|
||||
HEIGHT=20
|
||||
WIDTH=73
|
||||
CHOICE_HEIGHT=2
|
||||
BACKTITLE="RaspiBlitz"
|
||||
TITLE="BTCPay Server Install"
|
||||
MENU="Choose 'TOR' if you want to set up BTCPayServer
|
||||
as a Tor Hidden service and use a self signed SSL certificate.\n\n
|
||||
Choose 'DOMAIN' if you want to use a Domain Name or dynamicDNS
|
||||
pointing to your public IP. You will need to forward ports from your
|
||||
router to your RaspiBlitz and an email address to be used for
|
||||
communication about the SSL certificate (very experimental).\n\n
|
||||
For details or troubleshoot check for 'BTCPay'
|
||||
in README of https://github.com/rootzoll/raspiblitz"
|
||||
OPTIONS=(TOR "Tor access and a self-signed certificate"\
|
||||
DOMAIN "(Dynamic) Domain Name (experimental)")
|
||||
|
||||
CHOICE=$(dialog --clear \
|
||||
--backtitle "$BACKTITLE" \
|
||||
--title "$TITLE" \
|
||||
--menu "$MENU" \
|
||||
$HEIGHT $WIDTH $CHOICE_HEIGHT \
|
||||
"${OPTIONS[@]}" \
|
||||
2>&1 >/dev/tty)
|
||||
|
||||
dialogcancel=$?
|
||||
echo "done dialog"
|
||||
clear
|
||||
|
||||
# check if user canceled dialog
|
||||
echo "dialogcancel(${dialogcancel})"
|
||||
if [ ${dialogcancel} -eq 1 ]; then
|
||||
echo "user cancelled"
|
||||
exit 1
|
||||
fi
|
||||
########## Deactivated IP/DOMAIN for now - using TOR as default ###########
|
||||
#HEIGHT=20
|
||||
#WIDTH=73
|
||||
#CHOICE_HEIGHT=2
|
||||
#BACKTITLE="RaspiBlitz"
|
||||
#TITLE="BTCPay Server Install"
|
||||
#MENU="Choose 'TOR' if you want to set up BTCPayServer
|
||||
#as a Tor Hidden service and use a self signed SSL certificate.\n\n
|
||||
#Choose 'DOMAIN' if you want to use a Domain Name or dynamicDNS
|
||||
#pointing to your public IP. You will need to forward ports from your
|
||||
#router to your RaspiBlitz and an email address to be used for
|
||||
#communication about the SSL certificate (very experimental).\n\n
|
||||
#For details or troubleshoot check for 'BTCPay'
|
||||
#in README of https://github.com/rootzoll/raspiblitz"
|
||||
#OPTIONS=(TOR "Tor access and a self-signed certificate"\
|
||||
# DOMAIN "(Dynamic) Domain Name (experimental)")
|
||||
#
|
||||
#CHOICE=$(dialog --clear \
|
||||
# --backtitle "$BACKTITLE" \
|
||||
# --title "$TITLE" \
|
||||
# --menu "$MENU" \
|
||||
# $HEIGHT $WIDTH $CHOICE_HEIGHT \
|
||||
# "${OPTIONS[@]}" \
|
||||
# 2>&1 >/dev/tty)
|
||||
#
|
||||
#dialogcancel=$?
|
||||
#echo "done dialog"
|
||||
#clear
|
||||
#
|
||||
## check if user canceled dialog
|
||||
#echo "dialogcancel(${dialogcancel})"
|
||||
#if [ ${dialogcancel} -eq 1 ]; then
|
||||
# echo "user cancelled"
|
||||
# exit 1
|
||||
#fi
|
||||
CHOICE="TOR"
|
||||
|
||||
clear
|
||||
case $CHOICE in
|
||||
@ -71,7 +73,6 @@ if ! grep -Eq "^BTCPayDomain=" /mnt/hdd/raspiblitz.conf; then
|
||||
echo "BTCPayDomain=off" >> /mnt/hdd/raspiblitz.conf
|
||||
fi
|
||||
|
||||
|
||||
echo ""
|
||||
echo "***"
|
||||
echo "Setting up Nginx and Certbot"
|
||||
@ -81,7 +82,7 @@ echo ""
|
||||
if [ $ownDomain -eq 1 ]; then
|
||||
echo ""
|
||||
echo "***"
|
||||
echo "Confirm that the ports 443 and 9735 are forwarded to the IP of your RaspiBlitz AND the port 80 on your router forwards to port 23001 of your RaspiBlitz by pressing [ENTER] or use [CTRL + C] to exit"
|
||||
echo "Confirm that the ports 443 and 9735 are forwarded to the IP of your RaspiBlitz AND the port 80 on your router forwards to port 80 of your RaspiBlitz by pressing [ENTER] or use [CTRL + C] to exit"
|
||||
read key
|
||||
|
||||
echo ""
|
||||
@ -107,7 +108,7 @@ if [ $ownDomain -eq 1 ]; then
|
||||
# install nginx and certbot
|
||||
sudo apt-get install nginx-full certbot -y
|
||||
|
||||
sudo ufw allow 23001 comment 'btcpayserver TCP'
|
||||
sudo ufw allow 80 comment 'HTTP web server'
|
||||
sudo ufw allow 443 comment 'btcpayserver SSL'
|
||||
|
||||
# get SSL cert
|
||||
@ -170,7 +171,7 @@ proxy_set_header Proxy \"\";
|
||||
|
||||
|
||||
server {
|
||||
listen 23001 default_server;
|
||||
listen 80 default_server;
|
||||
server_name _;
|
||||
return 301 https://\$host\$request_uri;
|
||||
}
|
||||
|
Loading…
x
Reference in New Issue
Block a user