configure will now only handle the nginx reverse proxy and will default to 8080

This commit is contained in:
Benjamin Salzberg 2024-05-01 02:01:20 +00:00
parent fa30251c66
commit d99e3d7f75
1 changed files with 8 additions and 1 deletions

View File

@ -3,7 +3,14 @@ echo "Enter a hostname for the Frontend (eg: piped.kavin.rocks):" && read -r fro
echo "Enter a hostname for the Backend (eg: pipedapi.kavin.rocks):" && read -r backend
echo "Enter a hostname for the Proxy (eg: pipedproxy.kavin.rocks):" && read -r proxy
echo "Enter the reverse proxy you would like to use (either caddy or nginx):" && read -r reverseproxy
echo "Enter a port to use for the reverse proxy:" && read -r port
port=8080 # Define default port
if [[ $reverseproxy = "nginx" ]]; then # if the nginx reverse proxy is used, we want to get a custom port
echo "Enter a port to use for the reverse proxy:" && read -r port
fi
integerregex='^[0-9]+$'
if ! [[ $port =~ $integerregex ]] ; then # ensure that the port is an integer. If it is not set it to the default.
port=8080
fi
rm -rf config/
rm -f docker-compose.yml