Delete change_ip.sh

This commit is contained in:
qiaofeng1227 2022-07-20 11:32:31 +08:00 committed by GitHub
parent b57fcb92e0
commit a53b25d30f
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -1,10 +0,0 @@
#!/bin/bash
app_url_replace=$(cat /data/apps/$1/.env |grep APP_URL_REPLACE)
if [ $app_url_replace == "APP_URL_REPLACE=true" ]; then
echo "Change APP_URL"
public_ip=`wget -O - https://download.websoft9.com/ansible/get_ip.sh | bash`
sudo sed -i "s/APP_URL=.*/APP_URL=$public_ip/g" /data/apps/$1/.env
else
echo "There is not APP_URL"
fi