Skip to content

Commit f26af62

Browse files
authored
chore(Docker): Enable ipv6 in nginx.conf (#2030)
1 parent 0302094 commit f26af62

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

.docker/nginx.conf

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,12 @@
11
server {
22
listen 80;
3-
3+
listen [::]:80;
4+
45
location / {
56
root /usr/share/nginx/html;
67
index index.html index.htm;
78
try_files $uri $uri/ /index.html =404;
89
}
910

1011
include /etc/nginx/extra-conf.d/*.conf;
11-
}
12+
}

0 commit comments

Comments
 (0)