Browse Source

tentatively done, should be ready for field testing

main
Zen 3 years ago
parent
commit
6900e211e5
  1. 35
      resources/base.nginx.conf
  2. 1
      resources/sample_bitcoin.conf
  3. 428
      scripts/ao.sh

35
resources/base.nginx.conf

@ -0,0 +1,35 @@
#user http;
worker_processes 1;
#error_log logs/error.log;
#error_log logs/error.log notice;
#error_log logs/error.log info;
#pid logs/nginx.pid;
events {
worker_connections 1024;
}
http {
include mime.types;
default_type application/octet-stream;
log_format main '$remote_addr - $remote_user [$time_local] "$request" '
'$status $body_bytes_sent "$http_referer" '
'"$http_user_agent" "$http_x_forwarded_for"';
access_log logs/access.log main;
sendfile on;
#tcp_nopush on;
#keepalive_timeout 0;
keepalive_timeout 65;
#gzip on;
include /etc/nginx/sites-enabled/*;
}

1
resources/sample_bitcoin.conf

@ -1,5 +1,6 @@
proxy=127.0.0.1:9050 proxy=127.0.0.1:9050
txindex=1 txindex=1
#prune=550
listen=1 listen=1
bind=127.0.0.1 bind=127.0.0.1
disablewallet=1 disablewallet=1

428
scripts/ao.sh

@ -11,7 +11,7 @@ BOLD="\e[1m"
ULINE="\e[4m" ULINE="\e[4m"
RESET="\e[0m" RESET="\e[0m"
# Make sure that ctrl+C actually exits # Make sure that ctrl+C actually exits the script
trap "exit" INT trap "exit" INT
clear clear
@ -69,7 +69,9 @@ echo ""
echo -e "Got it! Next we're going to make sure the system's repositories (where they get their data from)\nare updated and that you have all the basic command line utilities we need to continue. \n\n${BLUE}(enter)${RESET}" echo -e "Got it! Next we're going to make sure the system's repositories (where they get their data from)\nare updated and that you have all the basic command line utilities we need to continue. \n\n${BLUE}(enter)${RESET}"
read read
install_if_needed() { # Coding Moment: generally, whenever you see something with brackets at the end of it, like this() or like(this), it's a function! It takes inputs and gives outputs # Coding Moment: generally, whenever you see something with brackets at the end of it,
# like this() or like(this), it's a function! It takes inputs and gives outputs
install_if_needed() {
for package in "$@" for package in "$@"
do do
if [ -z $(which $package 2>/dev/null) ]; then if [ -z $(which $package 2>/dev/null) ]; then
@ -105,11 +107,11 @@ case $DISTRO in
sudo apt upgrade sudo apt upgrade
;; ;;
"arch") "arch")
#sudo pacman -Syu sudo pacman -Syu
;; ;;
"fedora") "fedora")
# sudo dnf update sudo dnf update
# sudo dnf upgrade sudo dnf upgrade
;; ;;
"mac") "mac")
install install
@ -131,7 +133,7 @@ case $DISTRO in
sudo pacman -S base-devel --noconfirm sudo pacman -S base-devel --noconfirm
fi fi
install_if_needed git wget sqlite3 python git gmp sqlite3 \ install_if_needed wget python git gmp sqlite3 \
python-mako python-pip net-tools zlib libsodium gettext python-mako python-pip net-tools zlib libsodium gettext
;; ;;
"mac") "mac")
@ -171,30 +173,30 @@ while [[ -z $AO ]]; do
esac esac
done; done;
echo "" echo ""
#
#if [ $AO = "3" ] || [ $AO = 'react' ]; then if [ $AO = "3" ] || [ $AO = 'react' ]; then
# echo -e "${BOLD}Installing Node.js${RESET}" echo -e "${BOLD}Installing Node.js${RESET}"
# chmod +x scripts/nvm_install.sh chmod +x scripts/nvm_install.sh
# scripts/nvm_install.sh scripts/nvm_install.sh
# if [ "$SHELL" = '/bin/zsh' ]; then if [ "$SHELL" = '/bin/zsh' ]; then
# echo 'sourcing zshrc' echo 'sourcing zshrc'
# source ~/.zshrc source ~/.zshrc
# else else
# source ~/.bashrc source ~/.bashrc
# fi fi
# nvm install v16.13.0 nvm install v16.13.0
# nvm alias default v16.13.0 nvm alias default v16.13.0
# if [ "$SHELL" = '/bin/zsh' ]; then if [ "$SHELL" = '/bin/zsh' ]; then
# echo 'sourcing zshrc' echo 'sourcing zshrc'
# source ~/.zshrc source ~/.zshrc
# else else
# source ~/.bashrc source ~/.bashrc
# fi fi
# echo "" echo ""
#fi fi
#
#
# TODO: Compile Bitcoin from C to make it resistant to changes in architecture (should work for ISA) # TODO: Compile Bitcoin from C to make it resistant to changes in architecture (should work for any ISA)
if [ $AO = "3" ] || [ $AO = 'react' ]; then if [ $AO = "3" ] || [ $AO = 'react' ]; then
echo -e "${BOLD}Installing Bitcoin Ecosystem${RESET}" echo -e "${BOLD}Installing Bitcoin Ecosystem${RESET}"
mkdir -p bitcoin mkdir -p bitcoin
@ -212,26 +214,26 @@ if [ $AO = "3" ] || [ $AO = 'react' ]; then
rm -rf bitcoin-22.0 rm -rf bitcoin-22.0
#echo -e "${BOLD}Installing lightningd${RESET}" echo -e "${BOLD}Installing lightningd${RESET}"
#git clone https://github.com/ElementsProject/lightning.git ~/lightning git clone https://github.com/ElementsProject/lightning.git ~/lightning
#pushd ~/lightning pushd ~/lightning
#git checkout v0.10.2 git checkout v0.10.2
#./configure ./configure
#sudo make sudo make
#sudo make install sudo make install
#popd popd
# TODO fix clboss # TODO fix clboss
#echo 'Installing clboss' # echo 'Installing clboss'
#git clone https://github.com/ZmnSCPxj/clboss.git ~/clboss # git clone https://github.com/ZmnSCPxj/clboss.git ~/clboss
#pushd ~/clboss # pushd ~/clboss
#git checkout 0.11B # git checkout 0.11B
#mkdir m4 # mkdir m4
#autoreconf -i # autoreconf -i
#./configure # ./configure
#make # make
#sudo make install # sudo make install
#popd # popd
echo "" echo ""
echo -e "${BOLD}Bitcoin installed!${RESET} Let's make sure it's configured now." echo -e "${BOLD}Bitcoin installed!${RESET} Let's make sure it's configured now."
@ -247,9 +249,22 @@ if [ $AO = "3" ] || [ $AO = 'react' ]; then
echo 'created default bitcoin config' echo 'created default bitcoin config'
fi fi
# TODO we should ask if they want to run in pruned mode
sed -i "s/BTC_LOGIN/${AUTHLINE}/" $HOME/.bitcoin/bitcoin.conf sed -i "s/BTC_LOGIN/${AUTHLINE}/" $HOME/.bitcoin/bitcoin.conf
read -p "Quick question - do you have 500GB of open memory on this device? (y/n): " prune
echo ""
case $prune in
y | Y)
echo "Okay great! We'll leave the bitcoin config it as it is."
;;
*)
echo "Let's cut it down to only store the last few blocks (It's only 550 MB!)"
sed -i "s/txindex=1/prune=550/" $HOME/.bitcoin/bitcoin.conf
;;
esac
echo ""
mkdir -p $HOME/.lightning mkdir -p $HOME/.lightning
if [ -f $HOME/.lightning/config ]; then if [ -f $HOME/.lightning/config ]; then
@ -258,7 +273,6 @@ if [ $AO = "3" ] || [ $AO = 'react' ]; then
cp resources/sample_lightning_config $HOME/.lightning/config cp resources/sample_lightning_config $HOME/.lightning/config
echo 'created default lightning config' echo 'created default lightning config'
fi fi
fi fi
echo '' echo ''
@ -272,25 +286,23 @@ if [ $AO = "3" ] || [ $AO = 'react' ]; then
TORRCPATH='/etc/tor/torrc' TORRCPATH='/etc/tor/torrc'
fi fi
TORRCPATH=
# Configure and write torrc file # Configure and write torrc file
cp resources/torrc-template . cp resources/torrc-template .
sudo sed -i "s#USER#${USER}#g" torrc-template sudo sed -i "s#USER#${USER}#g" torrc-template
sudo sed -i "s#HOME#${HOME}#g" torrc-template sudo sed -i "s#HOME#${HOME}#g" torrc-template
if [ -n "$TORRCPATH" ]; then if [ -z "$TORRCPATH" ]; then
sudo mv torrc-template $TORRCPATH
else
echo -e "${RED}Uh oh...${RESET} I couldn't figure out where your torrc file is. That might cause some issues" echo -e "${RED}Uh oh...${RESET} I couldn't figure out where your torrc file is. That might cause some issues"
sleep 3 sleep 3
echo -e "\nAnyways...\n" echo -e "\nAnyways...\n"
sleep 2 sleep 2
else
sudo mv torrc-template $TORRCPATH
fi fi
fi fi
#
## ------------------- Step 3 - AO Installation ------------------- # ------------------- Step 3 - AO Installation -------------------
#
echo -e "${BOLD}Configuring AO Core${RESET}\n" echo -e "${BOLD}Configuring AO Core${RESET}\n"
mkdir -p $HOME/.ao mkdir -p $HOME/.ao
@ -303,38 +315,36 @@ else
fi fi
echo "" echo ""
# case $AO in case $AO in
# "3") "3")
# echo -e "Installing ${BLUE}ao-3${RESET}" echo -e "Installing ${BLUE}ao-3${RESET}"
# git clone 'https://github.com/AutonomousOrganization/ao-3.git' ~/ao-3 git clone 'https://github.com/AutonomousOrganization/ao-3.git' ~/ao-3
# pushd ~/ao-3 pushd ~/ao-3
# npm install npm install
# npm run build npm run build
#
# if [ -f "$HOME/ao-3/configuration.js" ]; then if [ -f "$HOME/ao-3/configuration.js" ]; then
# echo configuration.js already exists echo configuration.js already exists
# else else
# cp resources/ao-config $HOME/ao-react/configuration.js cp resources/ao-config $HOME/ao-react/configuration.js
# sed -i "s#SQLITE_DATABASE#${HOME}/.ao/database.sqlite3#" $HOME/ao-react/configuration.js sed -i "s#SQLITE_DATABASE#${HOME}/.ao/database.sqlite3#" $HOME/ao-react/configuration.js
# sed -i "s#CLIGHTNING_DIR#${HOME}/.lightning/bitcoin#" $HOME/ao-react/configuration.js sed -i "s#CLIGHTNING_DIR#${HOME}/.lightning/bitcoin#" $HOME/ao-react/configuration.js
# sed -i "s#MEMES_DIR#${HOME}/.ao/memes#" $HOME/ao-react/configuration.js sed -i "s#MEMES_DIR#${HOME}/.ao/memes#" $HOME/ao-react/configuration.js
# fi fi
#
# npm run checkconfig npm run checkconfig
# popd popd
# ;; ;;
# "react") "react")
# echo -e "Installing ${BLUE}ao-react${RESET}" echo -e "Installing ${BLUE}ao-react${RESET}"
# git clone 'https://github.com/coalition-of-invisible-colleges/ao-react.git' ~/ao-react git clone 'https://github.com/coalition-of-invisible-colleges/ao-react.git' ~/ao-react
#
# pushd ~/ao-react
# # TODO process env bug during webpack npm install
# pushd ~/ao-react npm run webpack
# npm install popd
# npm run webpack ;;
# popd esac
# ;;
# esac
# TODO this is kind of janky/fragile, it would be better to store this in ~/.ao # TODO this is kind of janky/fragile, it would be better to store this in ~/.ao
CONFIG_FILE=$HOME/ao-$AO/configuration.js CONFIG_FILE=$HOME/ao-$AO/configuration.js
@ -350,67 +360,77 @@ else
sed -i "s#MEMES_DIR#${HOME}/.ao/memes#" $CONFIG_FILE sed -i "s#MEMES_DIR#${HOME}/.ao/memes#" $CONFIG_FILE
fi fi
## ------------------- Step 4 - NGINX Setup ------------------- # ------------------- Step 4 - NGINX Setup -------------------
#
#echo "" echo ""
#echo "We might need to query DNS records here..." echo "We might need to query DNS records here..."
#install_if_needed dig nginx install_if_needed dig nginx
#echo -e "You still there? I need to ask you some questions! \n\n${BLUE}(enter)${RESET}" echo -e "You still there? I need to ask you some questions! \n\n${BLUE}(enter)${RESET}"
#read read
#echo "" echo ""
#read -p "Do you have a domain name pointing to this computer? (y/n): " dns read -p "Do you have a domain name pointing to this computer? (y/n): " dns
#echo "" echo ""
#case $dns in case $dns in
# y | Y) y | Y)
# echo "Good to hear! What is it?" echo "Good to hear! What is it?"
# read -p "http://" domain read -p "http://" domain
# ;; ;;
# *) *)
# echo "Okay, let's just leave it open for now." echo "Okay, let's just leave it open for now."
# domain=$(dig @resolver4.opendns.com myip.opendns.com +short) domain=$(dig @resolver4.opendns.com myip.opendns.com +short)
# anywhere=1 anywhere=1
# echo "Try accessing this AO from either localhost, 127.0.0.1, or ${domain}" echo "Try accessing this AO from either localhost, 127.0.0.1, or ${domain}"
# ;; ;;
#esac esac
anywhere=1 # TODO Remove this line if [ "$anywhere" -eq 1 ]; then
if [ "$anywhere" -eq 1 ]; then ACCESS_POINT=http://localhost
ACCESS_POINT=http://localhost:8003 else
else
ACCESS_POINT=https://$domain ACCESS_POINT=https://$domain
fi fi
#echo "" echo ""
#AO_NGINX_CONF=/etc/nginx/sites-available/ao
#sudo cp resources/ao.nginx.conf $AO_NGINX_CONF # Making sure this version of NGINX supports sites-enabled
# if [[ -z $(sudo cat /etc/nginx/nginx.conf | grep sites-enabled) ]]; then
#if [ -n $anywhere ]; then sudo mkdir -p /etc/nginx/sites-available
# sudo sed -i "s#SERVER_NAME#_#" $AO_NGINX_CONF sudo mkdir -p /etc/nginx/sites-enabled
#else sudo cp resources/base.nginx.conf /etc/nginx/nginx.conf
# sudo sed -i "s#SERVER_NAME#${domain}#" $AO_NGINX_CONF fi
#fi
# AO_NGINX_CONF=/etc/nginx/sites-available/ao
#sudo sed -i "s#FILE_ROOT#${HOME}/ao-react/dist#" $AO_NGINX_CONF sudo cp resources/ao.nginx.conf $AO_NGINX_CONF
#sudo ln -s /etc/nginx/sites-available/ao /etc/nginx/sites-enabled/
#echo "" if [ -n $anywhere ]; then
#sudo systemctl reload nginx sudo sed -i "s#SERVER_NAME#_#" $AO_NGINX_CONF
#echo "Excellent! We've configured $AO_NGINX_CONF to serve your AO from $domain" else
#echo "" sudo sed -i "s#SERVER_NAME#${domain}#" $AO_NGINX_CONF
# fi
#read -p "Would you like to enable SSL via Certbot? (y/n): " -n1 ssl
#echo "" sudo sed -i "s#FILE_ROOT#${HOME}/ao-react/dist#" $AO_NGINX_CONF
#case $ssl in
# y | Y) if [ ! -e /etc/nginx/sites-enabled/ao ]; then
# echo "Alright, let's get Certbot in here!" sudo ln -s /etc/nginx/sites-available/ao /etc/nginx/sites-enabled/
# install_if_needed python3 certbot python3-certbot-nginx fi
# echo -e "${BOLD}Take it away, Certbot${NC}" echo ""
# sudo certbot --nginx sudo systemctl reload nginx
# ;; echo "Excellent! We've configured $AO_NGINX_CONF to serve your AO from $domain"
# *) echo ""
# echo "Yea, SSL is lame anyways..."
# ;; read -p "Would you like to enable SSL via Certbot? (y/n): " -n1 ssl
#esac echo ""
#echo "" case $ssl in
y | Y)
echo "Alright, let's get Certbot in here!"
install_if_needed python3 certbot python3-certbot-nginx
echo -e "${BOLD}Take it away, Certbot${NC}"
sudo certbot --nginx
;;
*)
echo "Yea, SSL is lame anyways..."
;;
esac
echo ""
# ------------------- Step 7 - Systemd Setup ------------------- # ------------------- Step 7 - Systemd Setup -------------------
@ -434,30 +454,30 @@ while [[ -z $READY ]]; do
done done
echo "" echo ""
#echo "Creating tor.service..." echo "Creating tor.service..."
#TOR_SERVICE=/etc/systemd/system/tor.service TOR_SERVICE=/etc/systemd/system/tor.service
#if [ -f "$TOR_SERVICE" ]; then if [ -f "$TOR_SERVICE" ]; then
# echo "Seems like you've already got tor here!" echo "Seems like you've already got tor here!"
#else else
# sudo cp resources/tor-service-template $TOR_SERVICE sudo cp resources/tor-service-template $TOR_SERVICE
#
# # Making sure all values have been de-templated # Making sure all values have been de-templated
# sudo sed -i "s#USER#${USER}#g" $TOR_SERVICE sudo sed -i "s#USER#${USER}#g" $TOR_SERVICE
# sudo sed -i "s#HOME#${HOME}#g" $TOR_SERVICE sudo sed -i "s#HOME#${HOME}#g" $TOR_SERVICE
# sudo sed -i "s#TORRCPATH#${TORRCPATH}#g" $TOR_SERVICE sudo sed -i "s#TORRCPATH#${TORRCPATH}#g" $TOR_SERVICE
# sudo sed -i "s#TORPATH#$(which tor)#g" $TOR_SERVICE sudo sed -i "s#TORPATH#$(which tor)#g" $TOR_SERVICE
#fi fi
#
#
## Creating the .tor directory # Creating the .tor directory
#sudo mkdir -p $HOME/.tor sudo mkdir -p $HOME/.tor
#sudo chown tor $HOME/.tor sudo chown tor $HOME/.tor
#sudo chgrp $USER $HOME/.tor sudo chgrp $USER $HOME/.tor
#sudo chmod 770 $HOME/.tor sudo chmod 770 $HOME/.tor
#
#echo "Enabling and starting Tor" echo "Enabling and starting Tor"
#sudo systemctl enable tor sudo systemctl enable tor
#sudo systemctl start tor sudo systemctl start tor
echo "" echo ""
echo "Creating bitcoin.service..." echo "Creating bitcoin.service..."
@ -511,40 +531,40 @@ sudo systemctl enable ao
sudo systemctl start ao sudo systemctl start ao
echo "" echo ""
echo "Enabling and starting ${GREEN}NGINX${RESET} as the webserver" echo -e "Enabling and starting ${GREEN}NGINX${RESET} as the webserver"
sudo systemctl enable nginx sudo systemctl enable nginx
sudo systemctl start nginx sudo systemctl start nginx
# ------------------- Step 8 - Port Testing ------------------- # ------------------- Step 8 - Port Testing -------------------
#echo -e "${BOLD}One more thing!${RESET} We need to make sure that your ports are open." echo ""
#install_if_needed nmap echo -e "${BOLD}One more thing!${RESET} We need to make sure that your ports are open."
#nmap -Pn $domain > nmap.txt install_if_needed nmap
#OPEN=1 nmap -Pn $domain > nmap.txt
#if grep -qE "^80/.*(open|filtered)" nmap.txt; then OPEN=1
# echo -e "I can see port ${GREEN}80${RESET}!" if grep -qE "^80/.*(open|filtered)" nmap.txt; then
#else echo -e "I can see port ${GREEN}80${RESET}!"
# echo -e "Uh oh, port ${RED}80${RESET} isn't showing up..." else
# OPEN=0 echo -e "Uh oh, port ${RED}80${RESET} isn't showing up..."
#fi OPEN=0
# fi
#if grep -qE "^443/.*(open|filtered)" nmap.txt; then
# echo -e "I can see port ${GREEN}443${RESET} as well!" if grep -qE "^443/.*(open|filtered)" nmap.txt; then
#else echo -e "I can see port ${GREEN}443${RESET} as well!"
# echo -e "Uh oh, port ${RED}443${RESET} isn't showing up..." else
# OPEN=0 echo -e "Uh oh, port ${RED}443${RESET} isn't showing up..."
#fi OPEN=0
#rm nmap.txt fi
#echo "" rm nmap.txt
#if [[ $OPEN -eq 0 ]]; then echo ""
# echo -e "${RED}Port configuration needed.${RESET} Something (probably your wireless router) is blocking us from serving this page to the rest of the internet." if [[ $OPEN -eq 0 ]]; then
# echo "Port forwarding is relatively simple, but as it stands it is beyond the scope of this script to be able to automate it." echo -e "${RED}Port configuration needed.${RESET} Something (probably your wireless router) is blocking us from serving this page to the rest of the internet."
# echo -e "You'll probably need to look up the login information for your specific router and forward the red ports to the local IP of this computer (${BOLD}$(ip route | grep default | grep -oP "(?<=src )[^ ]+")${RESET})." echo "Port forwarding is relatively simple, but as it stands it is beyond the scope of this script to be able to automate it."
# echo -e "You can log into your router at this IP address: ${BOLD}$(route -n | grep ^0.0.0.0 | awk '{print $2}')${RESET}" echo -e "You'll probably need to look up the login information for your specific router and forward the red ports to the local IP of this computer (${BOLD}$(ip route | grep default | grep -oP "(?<=src )[^ ]+")${RESET})."
# echo "That's all the help I can give you regarding port forwarding. Good luck!" echo -e "You can log into your router at this IP address: ${BOLD}$(route -n | grep ^0.0.0.0 | awk '{print $2}')${RESET}"
# echo "" echo "That's all the help I can give you regarding port forwarding. Good luck!"
#fi echo ""
# fi
# ------------------- Step 9 - Health Check ------------------- # ------------------- Step 9 - Health Check -------------------
echo '' echo ''
@ -588,5 +608,7 @@ sudo systemctl start nginx
echo '*********************************************************' echo '*********************************************************'
clboss --version clboss --version
echo "" echo ""
echo -e "$BOLD$GREEN\nOkay, well that's everything!${RESET}\n\nAs long as everything worked properly, \ echo -e "$BOLD\nOkay, well that's everything!${RESET}\n\nAs long as everything worked properly, \
you should be ready to continue your journey\ntowards autonomy by opening ${BLUE}$ACCESS_POINT${RESET} in your browser." you should be ready to continue your journey\ntowards autonomy by opening ${BLUE}$ACCESS_POINT${RESET} in your browser."
exit 0

Loading…
Cancel
Save