mirror of
https://github.com/tanrax/org-social-relay
synced 2026-01-08 06:13:33 +01:00
25 lines
631 B
Plaintext
25 lines
631 B
Plaintext
# Example environment file with groups enabled
|
|
# Copy this to .env and modify as needed
|
|
|
|
# Django Settings
|
|
DJANGO_SETTINGS_MODULE=core.settings
|
|
DEBUG=true
|
|
SECRET_KEY=django-insecure-y315h5v5t^1c^rqqcpk1y&!7+f8%8rj3$3bh2k!xoco8x@a+kr
|
|
ALLOWED_HOSTS=localhost,127.0.0.1,django,nginx
|
|
SITE_DOMAIN=localhost:8080
|
|
|
|
# Redis Configuration
|
|
REDIS_HOST=redis
|
|
REDIS_PORT=6379
|
|
REDIS_DB=0
|
|
REDIS_CACHE_DB=1
|
|
|
|
# Huey Configuration
|
|
HUEY_WORKERS=1
|
|
|
|
# Groups Configuration - EXAMPLE WITH GROUPS ENABLED
|
|
# Comma-separated list of groups to enable in the relay
|
|
GROUPS=emacs,org-social,python,django,programming,tech
|
|
|
|
# Nginx Configuration
|
|
NGINX_PORT=8080 |