-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathenv.example
More file actions
39 lines (34 loc) · 1.23 KB
/
env.example
File metadata and controls
39 lines (34 loc) · 1.23 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
# ========================================
# CONFIGURACIÓN DE BASE DE DATOS
# ========================================
POSTGRES_DB=educontrol
POSTGRES_USER=educontrol
POSTGRES_PASSWORD=educontrol_secure_password
POSTGRES_HOST=db
POSTGRES_PORT=5432
# ========================================
# CONFIGURACIÓN DE DJANGO
# ========================================
DJANGO_SECRET_KEY=change-this-to-a-random-secret-key-in-production
DJANGO_ALLOWED_HOSTS=localhost 127.0.0.1 your-domain.com
DJANGO_DEBUG=false
# ========================================
# CONFIGURACIÓN WEB
# ========================================
EDUCONTROL_PORT="7579"
CSRF_TRUSTED_ORIGINS=https://your-domain.com http://localhost:3000
CORS_ALLOWED_ORIGINS=https://your-domain.com http://localhost:3000
# ========================================
# CONFIGURACIÓN DE CERTIFICADOS SSL
# ========================================
SSL_DOMAIN=localhost
SSL_IP=127.0.0.1
# ========================================
# CONFIGURACIÓN DE REDIS
# ========================================
REDIS_URL=redis://redis:6379/0
# ========================================
# CONFIGURACIÓN DE LDAP
# ========================================
AUTH_LDAP_SERVER=your-ldap-server
AUTH_LDAP_PASSWORD=your_ldap_password