mirror of
https://github.com/Websoft9/websoft9.git
synced 2024-11-25 09:00:26 +00:00
10 lines
344 B
Bash
10 lines
344 B
Bash
#!/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
|