File tree 4 files changed +10
-10
lines changed
4 files changed +10
-10
lines changed Original file line number Diff line number Diff line change @@ -34,7 +34,7 @@ NGINX_PROXY_COMPANION_IMAGE_VERSION=2.0
34
34
# work properly, '0.0.0.0' will work, but we recommend to update this variable
35
35
#
36
36
IPv4 = 0.0.0.0
37
- IPv6 = ::
37
+ IPv6 = ::0
38
38
39
39
# -----------------------------------------------------------------------
40
40
#
Original file line number Diff line number Diff line change @@ -56,5 +56,5 @@ REPLACE_LETSENCRYPT_SERVICE_NAME="nginx-proxy-automation-letsencrypt"
56
56
#
57
57
# md5 checksum for .env and docker-compose.yml files
58
58
#
59
- MD5_SUM_DOCKER_COMPOSE = 173dd5fe8088f758fa6062ad8c1faca9
60
- MD5_SUM_ENV_SAMPLE = 2b4d9183529cbf88974e19d9fd7ab803
59
+ MD5_SUM_DOCKER_COMPOSE = 2af4ea13a3a122898309cb154f64229c
60
+ MD5_SUM_ENV_SAMPLE = b299b584d68c1a6f7ac1b1a753a7517d
Original file line number Diff line number Diff line change @@ -943,7 +943,7 @@ if [[ ! "$IP_IPV4" == true ]]; then
943
943
echoerr " The IP address '$LOCAL_IP_ADDRESS ' seems to be in wrong format. Please try again or keep the default value."
944
944
local_undo_restore
945
945
else
946
- IP_ADDRESS=${LOCAL_IP_ADDRESS:- " ::1 " }
946
+ IP_ADDRESS=${LOCAL_IP_ADDRESS:- " 0.0.0.0 " }
947
947
fi
948
948
949
949
# -----------------------------------------------------------------------
@@ -964,11 +964,11 @@ if [[ "$ACTIVATE_IPV6" == true ]]; then
964
964
# Get user's response
965
965
run_function common_read_user_input \
966
966
" 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 ):"
968
968
969
- LOCAL_IPv6_ADDRESS=${USER_INPUT_RESPONSE:- " ::1 " }
969
+ LOCAL_IPv6_ADDRESS=${USER_INPUT_RESPONSE:- " ::0 " }
970
970
else
971
- LOCAL_IPv6_ADDRESS=${ARG_IPv6_ADDRESS:- " ::1 " }
971
+ LOCAL_IPv6_ADDRESS=${ARG_IPv6_ADDRESS:- " ::0 " }
972
972
fi
973
973
974
974
# Check the IP address
@@ -978,7 +978,7 @@ if [[ "$ACTIVATE_IPV6" == true ]]; then
978
978
echoerr " The IP address '$LOCAL_IPv6_ADDRESS ' seems to be in wrong format. Please try again or keep the default value."
979
979
local_undo_restore
980
980
else
981
- IPv6_ADDRESS=${LOCAL_IPv6_ADDRESS:- " ::1 " }
981
+ IPv6_ADDRESS=${LOCAL_IPv6_ADDRESS:- " ::0 " }
982
982
fi
983
983
fi
984
984
Original file line number Diff line number Diff line change @@ -10,8 +10,8 @@ services:
10
10
ports :
11
11
- " ${IPv4:-0.0.0.0}:${DOCKER_HTTP_:-80}:80"
12
12
- " ${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"
15
15
environment :
16
16
SSL_POLICY : ${SSL_POLICY:-Mozilla-Intermediate}
17
17
volumes :
You can’t perform that action at this time.
0 commit comments