feat: add MCP_ALLOWED_HOSTS support for reverse proxy configuration

This commit is contained in:
sha
2026-03-21 00:00:43 +02:00
parent a4180cc6f6
commit 3f67f7b0da
4 changed files with 14 additions and 0 deletions
+3
View File
@@ -12,4 +12,7 @@ stringData:
{{- if .Values.auth.token }}
MCP_AUTH_TOKEN: {{ .Values.auth.token | quote }}
{{- end }}
{{- if .Values.auth.allowedHosts }}
MCP_ALLOWED_HOSTS: {{ .Values.auth.allowedHosts | quote }}
{{- end }}
{{- end }}
+3
View File
@@ -15,6 +15,9 @@ redmine:
auth:
# Bearer token for HTTP transport (leave empty to disable auth)
token: ""
# Comma-separated list of additional allowed Host headers (e.g. your public domain)
# FastMCP allows only localhost by default — set this when running behind a reverse proxy
allowedHosts: ""
service:
type: ClusterIP