Skip to content

Commit

Permalink
chore(Docker): Enable ipv6 in nginx.conf (#2030)
Browse files Browse the repository at this point in the history
  • Loading branch information
jnimety authored Oct 31, 2024
1 parent 0302094 commit f26af62
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions .docker/nginx.conf
Original file line number Diff line number Diff line change
@@ -1,11 +1,12 @@
server {
listen 80;

listen [::]:80;

location / {
root /usr/share/nginx/html;
index index.html index.htm;
try_files $uri $uri/ /index.html =404;
}

include /etc/nginx/extra-conf.d/*.conf;
}
}

0 comments on commit f26af62

Please sign in to comment.