2018-05-10 18:54:23 +02:00
|
|
|
# If you have any doubts about what a setting does,
|
|
|
|
# check https://docs.funkwhale.audio/configuration.html#configuration-reference
|
|
|
|
|
2018-04-17 00:02:25 +02:00
|
|
|
# If you're tweaking this file from the template, ensure you edit at least the
|
|
|
|
# following variables:
|
|
|
|
# - DJANGO_SECRET_KEY
|
2018-09-26 21:53:07 +02:00
|
|
|
# - FUNKWHALE_HOSTNAME
|
2018-05-10 18:54:23 +02:00
|
|
|
# - EMAIL_CONFIG and DEFAULT_FROM_EMAIL if you plan to send emails)
|
|
|
|
# On non-docker setup **only**, you'll also have to tweak/uncomment those variables:
|
2018-04-17 00:02:25 +02:00
|
|
|
# - DATABASE_URL
|
|
|
|
# - CACHE_URL
|
|
|
|
#
|
|
|
|
# You **don't** need to update those variables on pure docker setups.
|
2018-09-26 21:53:07 +02:00
|
|
|
#
|
|
|
|
# Additional options you may want to check:
|
|
|
|
# - MUSIC_DIRECTORY_PATH and MUSIC_DIRECTORY_SERVE_PATH if you plan to use
|
|
|
|
# in-place import
|
|
|
|
#
|
2018-04-17 00:02:25 +02:00
|
|
|
# Docker only
|
|
|
|
# -----------
|
|
|
|
|
|
|
|
# The tag of the image we should use
|
|
|
|
# (it will be interpolated in docker-compose file)
|
|
|
|
# You can comment or ignore this if you're not using docker
|
|
|
|
# FUNKWHALE_VERSION=latest
|
|
|
|
|
2018-09-26 21:53:07 +02:00
|
|
|
# End of Docker-only configuration
|
2018-04-17 00:02:25 +02:00
|
|
|
|
|
|
|
# General configuration
|
|
|
|
# ---------------------
|
|
|
|
|
|
|
|
# Set this variables to bind the API server to another interface/port
|
|
|
|
# example: FUNKWHALE_API_IP=0.0.0.0
|
|
|
|
# example: FUNKWHALE_API_PORT=5678
|
|
|
|
FUNKWHALE_API_IP=127.0.0.1
|
|
|
|
FUNKWHALE_API_PORT=__PORT__
|
2019-07-28 17:25:29 +02:00
|
|
|
# The number of web workers to start in parallel. Higher means you can handle
|
|
|
|
# more concurrent requests, but also leads to higher CPU/Memory usage
|
|
|
|
FUNKWHALE_WEB_WORKERS=1
|
2018-04-17 00:02:25 +02:00
|
|
|
# Replace this by the definitive, public domain you will use for
|
|
|
|
# your instance
|
2019-02-16 13:16:00 +01:00
|
|
|
FUNKWHALE_HOSTNAME=__DOMAIN__
|
|
|
|
FUNKWHALE_PROTOCOL=https
|
2018-04-17 00:02:25 +02:00
|
|
|
|
2018-05-10 18:54:23 +02:00
|
|
|
# Configure email sending using this variale
|
|
|
|
# By default, funkwhale will output emails sent to stdout
|
|
|
|
# here are a few examples for this setting
|
|
|
|
# EMAIL_CONFIG=consolemail:// # output emails to console (the default)
|
|
|
|
# EMAIL_CONFIG=dummymail:// # disable email sending completely
|
|
|
|
# On a production instance, you'll usually want to use an external SMTP server:
|
|
|
|
# EMAIL_CONFIG=smtp://user@:password@youremail.host:25
|
|
|
|
# EMAIL_CONFIG=smtp+ssl://user@:password@youremail.host:465
|
|
|
|
# EMAIL_CONFIG=smtp+tls://user@:password@youremail.host:587
|
|
|
|
|
2019-07-28 17:25:29 +02:00
|
|
|
# The email address to use to send system emails.
|
2018-05-10 18:54:23 +02:00
|
|
|
# DEFAULT_FROM_EMAIL=noreply@yourdomain
|
|
|
|
|
|
|
|
# Depending on the reverse proxy used in front of your funkwhale instance,
|
|
|
|
# the API will use different kind of headers to serve audio files
|
|
|
|
# Allowed values: nginx, apache2
|
|
|
|
REVERSE_PROXY_TYPE=nginx
|
|
|
|
|
2018-04-17 00:02:25 +02:00
|
|
|
# API/Django configuration
|
|
|
|
|
|
|
|
# Database configuration
|
|
|
|
# Examples:
|
|
|
|
# DATABASE_URL=postgresql://<user>:<password>@<host>:<port>/<database>
|
|
|
|
# DATABASE_URL=postgresql://funkwhale:passw0rd@localhost:5432/funkwhale_database
|
|
|
|
# Use the next one if you followed Debian installation guide
|
|
|
|
DATABASE_URL=postgresql://__DBUSER__:__DBPWD__@:5432/__DBNAME__
|
|
|
|
|
|
|
|
# Cache configuration
|
|
|
|
# Examples:
|
|
|
|
# CACHE_URL=redis://<host>:<port>/<database>
|
2019-07-28 17:25:29 +02:00
|
|
|
# CACHE_URL=redis://localhost:6379/0c
|
|
|
|
# With a password:
|
|
|
|
# CACHE_URL=redis://:password@localhost:6379/0
|
|
|
|
# (the extra semicolon is important)
|
2018-04-17 00:02:25 +02:00
|
|
|
# Use the next one if you followed Debian installation guide
|
2019-07-28 17:25:29 +02:00
|
|
|
#
|
2018-05-12 23:57:20 +02:00
|
|
|
CACHE_URL=redis://127.0.0.1:6379/__REDIS_DB__
|
2019-07-28 17:25:29 +02:00
|
|
|
#
|
|
|
|
# If you want to use Redis over unix sockets, you'll actually need two variables:
|
|
|
|
# For the cache part:
|
|
|
|
# CACHE_URL=redis:///run/redis/redis.sock?db=0
|
|
|
|
# For the Celery/asynchronous tasks part:
|
|
|
|
# CELERY_BROKER_URL=redis+socket:///run/redis/redis.sock?virtual_host=0
|
|
|
|
|
2018-04-17 00:02:25 +02:00
|
|
|
|
|
|
|
# Where media files (such as album covers or audio tracks) should be stored
|
|
|
|
# on your system?
|
|
|
|
# (Ensure this directory actually exists)
|
2018-10-21 10:59:28 +02:00
|
|
|
MEDIA_ROOT=__FINALPATH__/media
|
2018-04-17 00:02:25 +02:00
|
|
|
|
|
|
|
# Where static files (such as API css or icons) should be compiled
|
|
|
|
# on your system?
|
|
|
|
# (Ensure this directory actually exists)
|
2018-10-21 10:59:28 +02:00
|
|
|
STATIC_ROOT=__FINALPATH__/code/data/static
|
2018-04-17 00:02:25 +02:00
|
|
|
|
|
|
|
# which settings module should django use?
|
|
|
|
# You don't have to touch this unless you really know what you're doing
|
|
|
|
DJANGO_SETTINGS_MODULE=config.settings.production
|
|
|
|
|
|
|
|
# Generate one using `openssl rand -base64 45`, for example
|
2018-05-10 14:45:13 +02:00
|
|
|
DJANGO_SECRET_KEY=__KEY__
|
2018-04-17 00:02:25 +02:00
|
|
|
|
|
|
|
# You don't have to edit this, but you can put the admin on another URL if you
|
|
|
|
# want to
|
|
|
|
# DJANGO_ADMIN_URL=^api/admin/
|
|
|
|
|
|
|
|
# Sentry/Raven error reporting (server side)
|
|
|
|
# Enable Raven if you want to help improve funkwhale by
|
|
|
|
# automatically sending error reports our Sentry instance.
|
|
|
|
# This will help us detect and correct bugs
|
|
|
|
RAVEN_ENABLED=false
|
|
|
|
RAVEN_DSN=https://44332e9fdd3d42879c7d35bf8562c6a4:0062dc16a22b41679cd5765e5342f716@sentry.eliotberriot.com/5
|
2018-09-26 21:53:07 +02:00
|
|
|
|
|
|
|
# In-place import settings
|
|
|
|
# You can safely leave those settings uncommented if you don't plan to use
|
|
|
|
# in place imports.
|
|
|
|
# Typical docker setup:
|
2019-07-28 17:25:29 +02:00
|
|
|
# MUSIC_DIRECTORY_PATH=/music # docker-only
|
|
|
|
# MUSIC_DIRECTORY_SERVE_PATH=/srv/funkwhale/data/music
|
2018-09-26 21:53:07 +02:00
|
|
|
# Typical non-docker setup:
|
|
|
|
# MUSIC_DIRECTORY_PATH=/srv/funkwhale/data/music
|
|
|
|
# # MUSIC_DIRECTORY_SERVE_PATH= # stays commented, not needed
|
|
|
|
|
2018-10-21 10:59:28 +02:00
|
|
|
MUSIC_DIRECTORY_PATH=__FINALPATH__/import
|
2019-02-16 13:16:00 +01:00
|
|
|
MUSIC_DIRECTORY_SERVE_PATH=__FINALPATH__/import
|
2018-09-26 21:53:07 +02:00
|
|
|
|
|
|
|
# LDAP settings
|
|
|
|
# Use the following options to allow authentication on your Funkwhale instance
|
|
|
|
# using a LDAP directory.
|
|
|
|
# Have a look at https://docs.funkwhale.audio/installation/ldap.html for
|
|
|
|
# detailed instructions.
|
|
|
|
|
2018-10-20 21:54:59 +02:00
|
|
|
LDAP_ENABLED=True
|
|
|
|
LDAP_SERVER_URI=ldap://localhost:389
|
|
|
|
# enable anonymous searches https://django-auth-ldap.readthedocs.io/en/latest/authentication.html?highlight=anonymous#search-bind
|
|
|
|
LDAP_BIND_DN=''
|
|
|
|
LDAP_BIND_PASSWORD=''
|
|
|
|
LDAP_SEARCH_FILTER=(|(uid={0}))
|
|
|
|
LDAP_START_TLS=False
|
|
|
|
LDAP_ROOT_DN=ou=users,dc=yunohost,dc=org
|
|
|
|
LDAP_USER_ATTR_MAP={"username":"uid"}
|
2018-09-26 21:53:07 +02:00
|
|
|
|
2019-02-15 06:46:40 +01:00
|
|
|
FUNKWHALE_FRONTEND_PATH=__FINALPATH__/code/front/dist
|
|
|
|
FUNKWHALE_SPA_HTML_ROOT=__FINALPATH__/code/front/dist/index.html
|
2018-09-26 21:53:07 +02:00
|
|
|
|
|
|
|
# Nginx related configuration
|
2019-01-28 19:29:38 +01:00
|
|
|
NGINX_MAX_BODY_SIZE=100M
|