Skip to content

Commit

Permalink
Enable quicktunnels bu default
Browse files Browse the repository at this point in the history
  • Loading branch information
robballantyne committed Feb 7, 2024
1 parent e5e3aa0 commit ca9aec9
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion build/COPY_ROOT/opt/ai-dock/fastapi/serviceportal/main.py
Original file line number Diff line number Diff line change
Expand Up @@ -85,7 +85,7 @@ def get_index_context(request, message=None):
"services": services,
"urlslug": os.environ.get('IMAGE_SLUG'),
"direct_address": os.environ.get('DIRECT_ADDRESS'),
'quicktunnels': True if os.environ.get('CF_QUICK_TUNNELS') == "true" else False,
'quicktunnels': False if os.environ.get('CF_QUICK_TUNNELS') == "false" else True,
'namedtunnels': True if os.environ.get('SUPERVISOR_START_CLOUDFLARED') == "1" else False
}

Expand Down
2 changes: 1 addition & 1 deletion docker-compose.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,7 @@ services:
- DIRECT_ADDRESS=${DIRECT_ADDRESS:-127.0.0.1}
- DIRECT_ADDRESS_GET_WAN=${DIRECT_ADDRESS_GET_WAN:-false}
- WORKSPACE=${WORKSPACE:-/workspace}
- WORKSPACE_SYNC=${WORKSPACE_SYNC:-true}
- WORKSPACE_SYNC=${WORKSPACE_SYNC:-false}
- CF_TUNNEL_TOKEN=${CF_TUNNEL_TOKEN:-}
- CF_QUICK_TUNNELS=${CF_QUICK_TUNNELS:-true}
- WEB_ENABLE_AUTH=${WEB_ENABLE_AUTH:-true}
Expand Down

0 comments on commit ca9aec9

Please sign in to comment.