diff --git a/README.md b/README.md index ca454c4..98d25b4 100644 --- a/README.md +++ b/README.md @@ -11,7 +11,6 @@ This service: or with certs retrieved via ACME protocol (e.g. lets encrypt) for production - Routes requests to appropriate microservices based on URL paths - Handles WebSocket connections for real-time features -- Supports gRPC communication for the manage service ## Configuration diff --git a/entrypoint.sh b/entrypoint.sh index 1083260..c0409f0 100755 --- a/entrypoint.sh +++ b/entrypoint.sh @@ -35,8 +35,6 @@ PROJECTOR_HOST="${PROJECTOR_HOST:-projector}" PROJECTOR_PORT="${PROJECTOR_PORT:-9051}" MEDIA_HOST="${MEDIA_HOST:-media}" MEDIA_PORT="${MEDIA_PORT:-9006}" -MANAGE_HOST="${MANAGE_HOST:-manage}" -MANAGE_PORT="${MANAGE_PORT:-9008}" VOTE_HOST="${VOTE_HOST:-vote}" VOTE_PORT="${VOTE_PORT:-9013}" CLIENT_HOST="${CLIENT_HOST:-client}" diff --git a/services/manage.router b/services/manage.router deleted file mode 100644 index 415208b..0000000 --- a/services/manage.router +++ /dev/null @@ -1,5 +0,0 @@ - manage: - rule: "Header(`Content-Type`, `application/grpc`)" - service: manage - entryPoints: - - main diff --git a/services/manage.service b/services/manage.service deleted file mode 100644 index 6d6104c..0000000 --- a/services/manage.service +++ /dev/null @@ -1,7 +0,0 @@ - manage: - loadBalancer: - servers: - # h2c = HTTP/2 Cleartext (unencrypted) for gRPC - - url: "h2c://${MANAGE_HOST}:${MANAGE_PORT}" - # Forward the original Host header to the backend service - passHostHeader: true