File tree Expand file tree Collapse file tree 2 files changed +3
-2
lines changed
Expand file tree Collapse file tree 2 files changed +3
-2
lines changed Original file line number Diff line number Diff line change @@ -4,7 +4,7 @@ set -Eeuo pipefail
44trap " echo TRAPed signal" HUP INT QUIT TERM
55
66# configure nginx DNS settings to match host, why must we do that nginx?
7- conf=" resolver $( /usr/bin/awk ' BEGIN{ORS=" "} $1=="nameserver" {print $2}' /etc/resolv.conf) ipv6=off; # Avoid ipv6 addresses for now "
7+ conf=" resolver $( /usr/bin/awk ' BEGIN{ORS=" "} $1=="nameserver" {print $2}' /etc/resolv.conf) ; "
88[ " $conf " = " resolver ;" ] && echo " no nameservers found" && exit 0
99confpath=/etc/nginx/resolvers.conf
1010if [ ! -e $confpath ] || [ " $conf " != " $( cat $confpath ) " ]
Original file line number Diff line number Diff line change 1414 map_hash_bucket_size 128 ;
1515 include /etc/nginx/mime.types ;
1616 default_type application/octet-stream ;
17-
17+
1818 # Include nginx timeout configs
1919 include /etc/nginx/nginx.timeouts.config.conf;
2020
@@ -133,6 +133,7 @@ http {
133133 # The proxy director layer, listens on 3128
134134 server {
135135 listen 3128 ;
136+ listen [::]:3128 ;
136137 server_name proxy_director_;
137138
138139 # dont log the CONNECT proxy.
You can’t perform that action at this time.
0 commit comments