mirror of
https://github.com/mastodon/mastodon.git
synced 2024-11-09 17:15:18 +00:00
Add option to enable single user mode (#19503)
This commit is contained in:
parent
9bf6a8af82
commit
223e152312
|
@ -24,6 +24,9 @@ data:
|
||||||
{{- if .Values.mastodon.web_domain }}
|
{{- if .Values.mastodon.web_domain }}
|
||||||
WEB_DOMAIN: {{ .Values.mastodon.web_domain }}
|
WEB_DOMAIN: {{ .Values.mastodon.web_domain }}
|
||||||
{{- end }}
|
{{- end }}
|
||||||
|
{{- if .Values.mastodon.singleUserMode }}
|
||||||
|
SINGLE_USER_MODE: "true"
|
||||||
|
{{- end }}
|
||||||
# https://devcenter.heroku.com/articles/tuning-glibc-memory-behavior
|
# https://devcenter.heroku.com/articles/tuning-glibc-memory-behavior
|
||||||
MALLOC_ARENA_MAX: "2"
|
MALLOC_ARENA_MAX: "2"
|
||||||
NODE_ENV: "production"
|
NODE_ENV: "production"
|
||||||
|
|
|
@ -30,6 +30,8 @@ mastodon:
|
||||||
# Use of WEB_DOMAIN requires careful consideration: https://docs.joinmastodon.org/admin/config/#federation
|
# Use of WEB_DOMAIN requires careful consideration: https://docs.joinmastodon.org/admin/config/#federation
|
||||||
# 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
|
||||||
# web_domain: mastodon.example.com
|
# web_domain: mastodon.example.com
|
||||||
|
# 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
|
||||||
persistence:
|
persistence:
|
||||||
assets:
|
assets:
|
||||||
# ReadWriteOnce is more widely supported than ReadWriteMany, but limits
|
# ReadWriteOnce is more widely supported than ReadWriteMany, but limits
|
||||||
|
|
Loading…
Reference in a new issue