Files

17 lines
556 B
Bash
Raw Permalink Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
export APP_GITEA_MIRROR_PORT="4322"
local_ips=$(hostname --all-ip-addresses 2> /dev/null) || local_ips=""
export APP_GITEA_MIRROR_LOCAL_IPS="${local_ips}"
# Создайте URLs с http:// и портом, разделенными запятыми.
ips_with_port=$(for ip in $local_ips; do
# Оберните адреса IPv6 в []
if [[ "$ip" == *:* ]]; then
echo -n "http://[$ip]:$APP_GITEA_MIRROR_PORT,"
else
echo -n "http://$ip:$APP_GITEA_MIRROR_PORT,"
fi
done | sed 's/,$//')
export APP_GITEA_MIRROR_LOCAL_URLS="${ips_with_port}"