Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions dev/build/gunicorn.conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -12,8 +12,8 @@
from opentelemetry.instrumentation.pymemcache import PymemcacheInstrumentor
from opentelemetry.instrumentation.requests import RequestsInstrumentor

# Bind interfaces for both ipv4 and ipv6
bind = ["127.0.0.1:8000", "[::1]:8000"]
# Bind all ipv4 and ipv6 interfaces
bind = ["0.0.0.0:8000", "[::]:8000"]

# Disable control socket
control_socket_disable = True
Expand Down
Loading