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
4
4
trap " echo TRAPed signal" HUP INT QUIT TERM
5
5
6
6
# 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) ; "
8
8
[ " $conf " = " resolver ;" ] && echo " no nameservers found" && exit 0
9
9
confpath=/etc/nginx/resolvers.conf
10
10
if [ ! -e $confpath ] || [ " $conf " != " $( cat $confpath ) " ]
Original file line number Diff line number Diff line change 14
14
map_hash_bucket_size 128 ;
15
15
include /etc/nginx/mime.types;
16
16
default_type application/octet-stream;
17
-
17
+
18
18
# Include nginx timeout configs
19
19
include /etc/nginx/nginx.timeouts.config.conf;
20
20
@@ -133,6 +133,7 @@ http {
133
133
# The proxy director layer, listens on 3128
134
134
server {
135
135
listen 3128 ;
136
+ listen [::]:3128;
136
137
server_name proxy_director_;
137
138
138
139
# dont log the CONNECT proxy.
You can’t perform that action at this time.
0 commit comments