refactor: simplify OVIS frontend Traefik routing to single CCP router

Collapse the `/ccp-ovis` slash-redirect and prefix-strip flow into one `ovis-frontend-ccp` router by attaching both middlewares in order (redirect, then strip). This removes redundant router labels while preserving canonical `/ccp-ovis -> /ccp-ovis/` behavior and mounted-path forwarding to the frontend service.
This commit is contained in:
tm16-medma
2026-03-23 13:11:27 +01:00
parent 014933ab61
commit e292a67ded
2 changed files with 2 additions and 10 deletions

View File

@@ -1,9 +1,6 @@
#!/bin/bash -e
if [ -n "$ENABLE_OVIS" ]; then
if declare -F log >/dev/null 2>&1; then
log INFO "OVIS setup detected -- will start OVIS services."
fi
log INFO "OVIS setup detected -- will start OVIS services."
OVERRIDE+=" -f ./$PROJECT/modules/ovis-compose.yml"
fi