fix(tailscale): Incorrect usage of commands
Some checks failed
/ validate-docker-compose (push) Has been cancelled

This commit is contained in:
Jose Daniel G. Percy 2025-04-25 10:37:19 +08:00
parent bccf28da84
commit a0fb667642

View File

@ -540,12 +540,12 @@ services:
# --- Start Tailscale Funnel/Serve --- # --- Start Tailscale Funnel/Serve ---
# Check the ENABLE_FUNNEL_HTTPS variable # Check the ENABLE_FUNNEL_HTTPS variable
if [ "${ENABLE_FUNNEL_HTTPS}" = "true" ]; then if [ "${ENABLE_FUNNEL_HTTPS}" = "true" ]; then
echo "ENABLE_FUNNEL_HTTPS is true. Setting up Funnel: HTTPS -> http://traefik:80..." echo "ENABLE_FUNNEL_HTTPS is true. Setting up Funnel -> http://traefik:80..."
tailscale funnel --bg https / http://traefik:80 tailscale funnel --bg http://traefik:80
echo "Tailscale Funnel configured." echo "Tailscale Funnel configured."
else else
echo "ENABLE_FUNNEL_HTTPS is false. Setting up Serve: HTTPS -> http://traefik:80..." echo "ENABLE_FUNNEL_HTTPS is false. Setting up Serve -> http://traefik:80..."
tailscale serve --bg https / http://traefik:80 tailscale serve --bg http://traefik:80
echo "Tailscale Serve configured." echo "Tailscale Serve configured."
fi fi
# --- End Tailscale Funnel/Serve --- # --- End Tailscale Funnel/Serve ---