Skip to content
Open
Show file tree
Hide file tree
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
6 changes: 6 additions & 0 deletions ops/compose/production.env.example
Original file line number Diff line number Diff line change
Expand Up @@ -10,3 +10,9 @@ AURORA_TENANT_URL=https://dinglebear.ai

# Used only when rendering the tracked SWAG templates on squirts.
AURORA_UPSTREAM_HOST=dookie.manatee-triceratops.ts.net

# Optional second bind for direct (non-proxied) access on another interface.
# Must differ from AURORA_BIND_ADDRESS and neither may be 0.0.0.0, or the two
# port bindings collide and docker compose up fails. Set the real address in
# the untracked production.env.
AURORA_LAN_BIND_ADDRESS=127.0.0.1
1 change: 1 addition & 0 deletions ops/compose/production.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,7 @@ services:
container_name: aurora
ports:
- "${AURORA_BIND_ADDRESS:?AURORA_BIND_ADDRESS is required}:${AURORA_PUBLIC_PORT:-50000}:3000"
- "${AURORA_LAN_BIND_ADDRESS:-127.0.0.1}:${AURORA_PUBLIC_PORT:-50000}:3000"
environment:
NODE_ENV: production
NEXT_TELEMETRY_DISABLED: "1"
Expand Down
Loading