mirror of
https://github.com/kevinveenbirkenbach/computer-playbook.git
synced 2024-11-13 00:11:05 +01:00
12 lines
424 B
Django/Jinja
12 lines
424 B
Django/Jinja
FUNKWHALE_HOSTNAME={{domain}}
|
|
FUNKWHALE_PROTOCOL=https
|
|
# This limits the upload size
|
|
NGINX_MAX_BODY_SIZE=100M
|
|
# Bind to localhost
|
|
FUNKWHALE_API_IP=127.0.0.1
|
|
# Container port you want to expose on the host
|
|
FUNKWHALE_API_PORT={{http_port}}
|
|
# Generate and store a secure secret key for your instance
|
|
DJANGO_SECRET_KEY={{funkwhale_django_secret}}
|
|
# Remove this if you expose the container directly on ports 80/443
|
|
NESTED_PROXY=1 |