Initialisation depot
This commit is contained in:
31
samba-api/.env.example
Normal file
31
samba-api/.env.example
Normal file
@@ -0,0 +1,31 @@
|
||||
# Environment variables for Samba API
|
||||
# Copy this file to .env and update the values
|
||||
|
||||
# API Configuration
|
||||
HOST=0.0.0.0
|
||||
PORT=8000
|
||||
DEBUG=false
|
||||
|
||||
# Security
|
||||
SECRET_KEY=your-secret-key-change-in-production-minimum-32-characters
|
||||
ACCESS_TOKEN_EXPIRE_MINUTES=30
|
||||
ALGORITHM=HS256
|
||||
|
||||
# CORS
|
||||
ALLOWED_HOSTS=["*"]
|
||||
|
||||
# Samba Configuration
|
||||
SAMBA_DOMAIN=example.com
|
||||
SAMBA_DC=dc01.example.com
|
||||
SAMBA_ADMIN_USER=Administrator
|
||||
SAMBA_ADMIN_PASSWORD=admin-password
|
||||
SAMBA_BASE_DN=DC=example,DC=com
|
||||
|
||||
# LDAP Configuration
|
||||
LDAP_SERVER=ldap://localhost:389
|
||||
LDAP_USE_SSL=false
|
||||
LDAP_BIND_DN=Administrator@example.com
|
||||
LDAP_BIND_PASSWORD=admin-password
|
||||
|
||||
# Logging
|
||||
LOG_LEVEL=INFO
|
||||
Reference in New Issue
Block a user