Update init_without_docker.sh

This commit is contained in:
qiaofeng1227 2022-09-07 16:42:08 +08:00 committed by GitHub
parent b1ab3c97d4
commit 770ef7e516
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -6,7 +6,7 @@ echo $newpassword |passwd --stdin fastuser
sed -i '/172.17.0.1/d' /etc/nginx/conf.d/parking.conf
internal_ip=$(ip addr show dev eth0|grep inet |grep eth0|cut -d/ -f1|cut -d" " -f6)
old_ip=$(cat /etc/nginx/conf.d/parking.conf |grep default_server|grep ssl |cut -d: -f1|cut -d" " -f2)
old_ip=$(cat /etc/nginx/conf.d/parking.conf |grep default_server|grep ssl |cut -d: -f1|cut -d" " -f6)
sed -i "s/$old_ip/$internal_ip/g" /etc/nginx/conf.d/parking.conf
systemctl restart nginx