Skip to content

Commit

Permalink
fix: Changed debug page address on config file (#3102)
Browse files Browse the repository at this point in the history
Debug page address was set to 127.0.0.1:5000 on the consensus config
file for the docker node. That didn't let users access the page from
outside the container. It was set to 0.0.0.0:5000 and it now works.
  • Loading branch information
brunoffranca authored Oct 15, 2024
1 parent d9284d6 commit 331fe87
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
server_addr: '0.0.0.0:3054'
public_addr: '127.0.0.1:3054'
debug_page_addr: '127.0.0.1:5000'
debug_page_addr: '0.0.0.0:5000'
max_payload_size: 5000000
gossip_dynamic_inbound_limit: 100
gossip_static_outbound:
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
server_addr: '0.0.0.0:3054'
public_addr: '127.0.0.1:3054'
debug_page_addr: '127.0.0.1:5000'
debug_page_addr: '0.0.0.0:5000'
max_payload_size: 5000000
gossip_dynamic_inbound_limit: 100
gossip_static_outbound:
Expand Down

0 comments on commit 331fe87

Please sign in to comment.