Skip to content

Commit 76ce4a7

Browse files
committed
Add instruction about ipv6 and /etc/hosts
1 parent 3e13a85 commit 76ce4a7

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

core/scripts/init.sh

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -73,7 +73,10 @@ printf "\n"
7373
echo -e "${RED}Please add the following line to your /etc/hosts:${NOCOLOR}${GREEN} \xE2\x9C\x94${NOCOLOR}"
7474
printf "\n"
7575

76-
echo "127.0.0.1 engine.dev.openconext.local manage.dev.openconext.local profile.dev.openconext.local engine-api.dev.openconext.local mujina-idp.dev.openconext.local profile.dev.openconext.local connect.dev.openconext.local teams.dev.openconext.local voot.dev.openconext.local"
76+
# we need ipv6 here, because otherwise systems will first query mdns for ipv6 entries for the .local domain
77+
hosts="engine.dev.openconext.local manage.dev.openconext.local profile.dev.openconext.local engine-api.dev.openconext.local mujina-idp.dev.openconext.local profile.dev.openconext.local connect.dev.openconext.local teams.dev.openconext.local voot.dev.openconext.local"
78+
echo "127.0.0.1 $hosts"
79+
echo "::1 $hosts"
7780

7881
printf "\n"
7982
echo "You can now login. If you want to bring the environment down, use the command below"

0 commit comments

Comments
 (0)