Skip to content

Commit

Permalink
fix: add allow-private-cidrs bee configuration
Browse files Browse the repository at this point in the history
  • Loading branch information
nugaon committed Nov 4, 2024
1 parent 6e44910 commit 88c66fe
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 0 deletions.
2 changes: 2 additions & 0 deletions orchestrator/builder/bee.sh
Original file line number Diff line number Diff line change
Expand Up @@ -219,6 +219,7 @@ if [ -z "$QUEEN_CONTAINER_IN_DOCKER" ] || $EPHEMERAL ; then
--password "$BEE_PASSWORD" \
--bootnode="$QUEEN_BOOTNODE" \
--bootnode-mode=false \
--allow-private-cidrs=true \
--verbosity=4 \
--mainnet=false \
--block-time=5 \
Expand Down Expand Up @@ -270,6 +271,7 @@ for i in $(seq 1 1 "$WORKERS"); do
--warmup-time=10s \
--password "$BEE_PASSWORD" \
--bootnode="$QUEEN_UNDERLAY_ADDRESS" \
--allow-private-cidrs=true \
--verbosity=4 \
--mainnet=false \
--block-time=5 \
Expand Down
1 change: 1 addition & 0 deletions src/utils/docker.ts
Original file line number Diff line number Diff line change
Expand Up @@ -521,6 +521,7 @@ export class Docker {
'welcome-message': 'You have found the queen of the beehive...',
'api-addr': '0.0.0.0:1633',
'cors-allowed-origins': '*',
'allow-private-cidrs': 'true',
}

if (bootnode) {
Expand Down

0 comments on commit 88c66fe

Please sign in to comment.