mastodon / chart

Helm chart for Mastodon deployment in Kubernetes
GNU Affero General Public License v3.0
152 stars 90 forks source link

Fix streaming route #47

Closed hinricht closed 1 year ago

hinricht commented 1 year ago

Until now, only /api/v1/streaming/ was routed to the streaming pod, while /api/v1/streaming/* was falsely routed to the web pod, which returned 404 for each request. Now everything below /api/v1/streaming will reach the streaming pod.

Fixes: #36

hinricht commented 1 year ago

@renchap Done!