mirror of
https://github.com/mastodon/chart
synced 2025-03-14 21:11:50 +00:00
Add alternate domains to Helm chart (#2)
This commit is contained in:
parent
349f76c610
commit
ce837a852a
|
@ -50,6 +50,9 @@ data:
|
||||||
{{- with .Values.mastodon.web_domain }}
|
{{- with .Values.mastodon.web_domain }}
|
||||||
WEB_DOMAIN: {{ . }}
|
WEB_DOMAIN: {{ . }}
|
||||||
{{- end }}
|
{{- end }}
|
||||||
|
{{- with .Values.mastodon.alternate_domains }}
|
||||||
|
ALTERNATE_DOMAINS: {{ join "," . }}
|
||||||
|
{{- end }}
|
||||||
{{- with .Values.mastodon.singleUserMode }}
|
{{- with .Values.mastodon.singleUserMode }}
|
||||||
SINGLE_USER_MODE: "true"
|
SINGLE_USER_MODE: "true"
|
||||||
{{- end }}
|
{{- end }}
|
||||||
|
|
|
@ -44,6 +44,9 @@ mastodon:
|
||||||
# You must redirect the path LOCAL_DOMAIN/.well-known/ to WEB_DOMAIN/.well-known/ as described
|
# You must redirect the path LOCAL_DOMAIN/.well-known/ to WEB_DOMAIN/.well-known/ as described
|
||||||
# Example: mastodon.example.com
|
# Example: mastodon.example.com
|
||||||
web_domain: null
|
web_domain: null
|
||||||
|
# -- If you have multiple domains pointed at your Mastodon server, this setting will allow Mastodon to recognize
|
||||||
|
# itself when users are addressed using those other domains.
|
||||||
|
alternate_domains: []
|
||||||
# -- If set to true, the frontpage of your Mastodon server will always redirect to the first profile in the database and registrations will be disabled.
|
# -- If set to true, the frontpage of your Mastodon server will always redirect to the first profile in the database and registrations will be disabled.
|
||||||
singleUserMode: false
|
singleUserMode: false
|
||||||
# -- Enables "Secure Mode" for more details see: https://docs.joinmastodon.org/admin/config/#authorized_fetch
|
# -- Enables "Secure Mode" for more details see: https://docs.joinmastodon.org/admin/config/#authorized_fetch
|
||||||
|
|
Loading…
Reference in New Issue
Block a user