1
0
Fork 0
mirror of https://github.com/YunoHost-Apps/glitchsoc_ynh.git synced 2024-09-03 19:15:59 +02:00
glitchsoc_ynh/conf/.env.production.sample

101 lines
2.5 KiB
Text
Raw Normal View History

2020-08-09 00:06:17 +02:00
# This is a sample configuration file. You can generate your configuration
# with the `rake mastodon:setup` interactive setup wizard, but to customize
# your setup even further, you'll need to edit it manually. This sample does
# not demonstrate all available configuration options. Please look at
# https://docs.joinmastodon.org/admin/config/ for the full documentation.
# Federation
# ----------
# This identifies your server and cannot be changed safely later
# ----------
LOCAL_DOMAIN=__DOMAIN__
# Redis
# -----
2019-03-21 04:30:44 +01:00
REDIS_HOST=localhost
REDIS_PORT=6379
2020-08-09 00:06:17 +02:00
# PostgreSQL
# ----------
2019-03-21 04:30:44 +01:00
DB_HOST=localhost
DB_USER=__DB_USER__
DB_NAME=__DB_NAME__
DB_PASS=__DB_PWD__
DB_PORT=5432
2020-08-09 00:06:17 +02:00
# ElasticSearch (optional)
# ------------------------
2019-03-21 04:30:44 +01:00
# ES_ENABLED=true
# ES_HOST=es
# ES_PORT=9200
2020-08-09 00:06:17 +02:00
# Secrets
# -------
# Make sure to use `rake secret` to generate secrets
# -------
2019-03-21 04:30:44 +01:00
SECRET_KEY_BASE=__SECRET_KEY_BASE__
OTP_SECRET=__OTP_SECRET__
2020-08-09 00:06:17 +02:00
# Web Push
# --------
# Generate with `rake mastodon:webpush:generate_vapid_key`
# --------
2019-03-23 02:58:59 +01:00
VAPID_PRIVATE_KEY=__VAPID_PRIVATE_KEY__
VAPID_PUBLIC_KEY=__VAPID_PUBLIC_KEY__
2020-08-09 00:06:17 +02:00
# Sending mail
# ------------
2019-03-21 04:30:44 +01:00
SMTP_SERVER=localhost
SMTP_PORT=25
#SMTP_LOGIN=
#SMTP_PASSWORD=
SMTP_FROM_ADDRESS=__SMTP_FROM_ADDRESS__
2019-10-04 01:43:21 +02:00
#SMTP_REPLY_TO=
2019-03-21 04:30:44 +01:00
#SMTP_DOMAIN= # defaults to LOCAL_DOMAIN
2019-05-10 23:00:16 +02:00
SMTP_DELIVERY_METHOD=sendmail # delivery method can also be smtp
2019-03-21 04:30:44 +01:00
SMTP_AUTH_METHOD=none
#SMTP_CA_FILE=/etc/ssl/certs/ca-certificates.crt
SMTP_OPENSSL_VERIFY_MODE=none
#SMTP_ENABLE_STARTTLS_AUTO=true
#SMTP_TLS=true
2020-08-09 00:06:17 +02:00
# Registrations
# ------------
# Single user mode will disable registrations and redirect frontpage to the first profile
# SINGLE_USER_MODE=true
# Prevent registrations with following e-mail domains
# EMAIL_DOMAIN_BLACKLIST=example1.com|example2.de|etc
# Only allow registrations with the following e-mail domains
# EMAIL_DOMAIN_WHITELIST=example1.com|example2.de|etc
2019-03-21 04:30:44 +01:00
2020-08-09 00:06:17 +02:00
# Optionally change default language
DEFAULT_LOCALE=__LANGUAGE__
2019-03-21 04:30:44 +01:00
2020-08-09 00:06:17 +02:00
# File storage (optional)
# -----------------------
2019-03-21 04:30:44 +01:00
# S3_ENABLED=true
# S3_BUCKET=
# AWS_ACCESS_KEY_ID=
# AWS_SECRET_ACCESS_KEY=
# S3_REGION=
# S3_PROTOCOL=http
# S3_HOSTNAME=192.168.1.123:9000
# S3_ALIAS_HOST=
# LDAP authentication (optional)
2020-08-09 00:06:17 +02:00
# -----------------------
2019-07-10 01:07:32 +02:00
LDAP_ENABLED=true
LDAP_HOST=localhost
LDAP_PORT=389
2019-07-13 10:51:01 +02:00
LDAP_METHOD=start_tls
2019-07-10 01:07:32 +02:00
LDAP_BASE=ou=users,dc=yunohost,dc=org
2019-10-18 23:29:38 +02:00
LDAP_BIND_DN=uid=local,ou=users,dc=yunohost,dc=org
2019-08-04 00:31:07 +02:00
LDAP_PASSWORD=
2019-07-10 01:07:32 +02:00
LDAP_UID=uid
2020-04-07 03:16:50 +02:00
LDAP_MAIL=mail
LDAP_SEARCH_FILTER=(|(%{uid}=%{email})(%{mail}=%{email}))
LDAP_UID_CONVERSION_ENABLED=true
LDAP_UID_CONVERSION_SEARCH=., -
LDAP_UID_CONVERSION_REPLACE=_
2019-07-13 10:51:01 +02:00
LDAP_TLS_NO_VERIFY=true