Skip to content

Commit 7665c1d

Browse files
committedMar 19, 2021
#256 Fix issue IPv6
1 parent bbe1f1c commit 7665c1d

File tree

4 files changed

+10
-10
lines changed

4 files changed

+10
-10
lines changed
 

‎.env.sample

+1-1
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ NGINX_PROXY_COMPANION_IMAGE_VERSION=2.0
3434
# work properly, '0.0.0.0' will work, but we recommend to update this variable
3535
#
3636
IPv4=0.0.0.0
37-
IPv6=::
37+
IPv6=::0
3838

3939
#-----------------------------------------------------------------------
4040
#

‎bin/.env

+2-2
Original file line numberDiff line numberDiff line change
@@ -56,5 +56,5 @@ REPLACE_LETSENCRYPT_SERVICE_NAME="nginx-proxy-automation-letsencrypt"
5656
#
5757
# md5 checksum for .env and docker-compose.yml files
5858
#
59-
MD5_SUM_DOCKER_COMPOSE=173dd5fe8088f758fa6062ad8c1faca9
60-
MD5_SUM_ENV_SAMPLE=2b4d9183529cbf88974e19d9fd7ab803
59+
MD5_SUM_DOCKER_COMPOSE=2af4ea13a3a122898309cb154f64229c
60+
MD5_SUM_ENV_SAMPLE=b299b584d68c1a6f7ac1b1a753a7517d

‎bin/fresh-start.sh

+5-5
Original file line numberDiff line numberDiff line change
@@ -943,7 +943,7 @@ if [[ ! "$IP_IPV4" == true ]]; then
943943
echoerr "The IP address '$LOCAL_IP_ADDRESS' seems to be in wrong format. Please try again or keep the default value."
944944
local_undo_restore
945945
else
946-
IP_ADDRESS=${LOCAL_IP_ADDRESS:-"::1"}
946+
IP_ADDRESS=${LOCAL_IP_ADDRESS:-"0.0.0.0"}
947947
fi
948948

949949
#-----------------------------------------------------------------------
@@ -964,11 +964,11 @@ if [[ "$ACTIVATE_IPV6" == true ]]; then
964964
# Get user's response
965965
run_function common_read_user_input \
966966
"Please enter the IP address (ipv6) that your server uses to connect to the internet. \
967-
\nYou might try the following '$IP_EXTERNAL_IPV6' (default: ::1):"
967+
\nYou might try the following '$IP_EXTERNAL_IPV6' (default: ::0):"
968968

969-
LOCAL_IPv6_ADDRESS=${USER_INPUT_RESPONSE:-"::1"}
969+
LOCAL_IPv6_ADDRESS=${USER_INPUT_RESPONSE:-"::0"}
970970
else
971-
LOCAL_IPv6_ADDRESS=${ARG_IPv6_ADDRESS:-"::1"}
971+
LOCAL_IPv6_ADDRESS=${ARG_IPv6_ADDRESS:-"::0"}
972972
fi
973973

974974
# Check the IP address
@@ -978,7 +978,7 @@ if [[ "$ACTIVATE_IPV6" == true ]]; then
978978
echoerr "The IP address '$LOCAL_IPv6_ADDRESS' seems to be in wrong format. Please try again or keep the default value."
979979
local_undo_restore
980980
else
981-
IPv6_ADDRESS=${LOCAL_IPv6_ADDRESS:-"::1"}
981+
IPv6_ADDRESS=${LOCAL_IPv6_ADDRESS:-"::0"}
982982
fi
983983
fi
984984

‎docker-compose.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -10,8 +10,8 @@ services:
1010
ports:
1111
- "${IPv4:-0.0.0.0}:${DOCKER_HTTP_:-80}:80"
1212
- "${IPv4:-0.0.0.0}:${DOCKER_HTTPS:-443}:443"
13-
# - "${IPv6:-::/0}:${DOCKER_HTTP_:-80}:80"
14-
# - "${IPv6:-::/0}:${DOCKER_HTTPS:-443}:443"
13+
# - "${IPv6:-::0}:${DOCKER_HTTP_:-80}:80"
14+
# - "${IPv6:-::0}:${DOCKER_HTTPS:-443}:443"
1515
environment:
1616
SSL_POLICY: ${SSL_POLICY:-Mozilla-Intermediate}
1717
volumes:

0 commit comments

Comments
 (0)