This commit is contained in:
ariretiarno
2025-10-05 22:47:48 +07:00
parent 711253beb2
commit 7298faac2b
2 changed files with 2 additions and 2 deletions

View File

@@ -29,7 +29,7 @@ spec:
- name: UPTIME_APP_API_BASE_URL
value: "{{ .Values.server.protocol }}://{{ .Values.server.ingress.host }}/api/v1"
- name: UPTIME_APP_CLIENT_HOST
value: "http://{{ .Values.client.ingress.host }}"
value: "{{ .Values.client.protocol }}://{{ .Values.client.ingress.host }}"
volumeMounts:
- name: config-volume
mountPath: /etc/nginx/conf.d/default.conf

View File

@@ -34,4 +34,4 @@ spec:
{{- end }}
env:
- name: CLIENT_HOST
value: "http://{{ .Values.client.ingress.host }}"
value: "{{ .Values.client.protocol }}://{{ .Values.client.ingress.host }}"