From a0fb667642e39b04ca3c776f7642171eb14cd859 Mon Sep 17 00:00:00 2001 From: aki Date: Fri, 25 Apr 2025 10:37:19 +0800 Subject: [PATCH] fix(tailscale): Incorrect usage of commands --- docker-compose.yml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/docker-compose.yml b/docker-compose.yml index 66a63c7..8c8ef0b 100644 --- a/docker-compose.yml +++ b/docker-compose.yml @@ -540,12 +540,12 @@ services: # --- Start Tailscale Funnel/Serve --- # Check the ENABLE_FUNNEL_HTTPS variable if [ "${ENABLE_FUNNEL_HTTPS}" = "true" ]; then - echo "ENABLE_FUNNEL_HTTPS is true. Setting up Funnel: HTTPS -> http://traefik:80..." - tailscale funnel --bg https / http://traefik:80 + echo "ENABLE_FUNNEL_HTTPS is true. Setting up Funnel -> http://traefik:80..." + tailscale funnel --bg http://traefik:80 echo "Tailscale Funnel configured." else - echo "ENABLE_FUNNEL_HTTPS is false. Setting up Serve: HTTPS -> http://traefik:80..." - tailscale serve --bg https / http://traefik:80 + echo "ENABLE_FUNNEL_HTTPS is false. Setting up Serve -> http://traefik:80..." + tailscale serve --bg http://traefik:80 echo "Tailscale Serve configured." fi # --- End Tailscale Funnel/Serve ---