30 lines
888 B
Plaintext
30 lines
888 B
Plaintext
# Django Settings
|
|
SECRET_KEY=your-secret-key-here-change-this-in-production
|
|
DEBUG=False
|
|
ALLOWED_HOSTS=localhost,127.0.0.1,your-domain.com
|
|
CSRF_TRUSTED_ORIGINS=http://localhost:8000,https://your-domain.com
|
|
|
|
# PostgreSQL Database
|
|
POSTGRES_DB=smartsoltech_db
|
|
POSTGRES_USER=smartsoltech_user
|
|
POSTGRES_PASSWORD=your-strong-password-here
|
|
POSTGRES_HOST=postgres_db
|
|
|
|
# PgAdmin
|
|
PGADMIN_DEFAULT_EMAIL=admin@smartsoltech.kr
|
|
PGADMIN_DEFAULT_PASSWORD=your-pgadmin-password
|
|
|
|
# Zabbix Agent
|
|
ZBX_SERVER_HOST=your-zabbix-server-ip
|
|
|
|
# Telegram Bot (настраивается через админку Django)
|
|
# TELEGRAM_BOT_TOKEN=your-bot-token-from-botfather
|
|
# TELEGRAM_BOT_NAME=your_bot_name
|
|
|
|
# Email Settings (настраивается через админку Django)
|
|
# SMTP_SERVER=smtp.gmail.com
|
|
# SMTP_PORT=587
|
|
# SENDER_EMAIL=your-email@gmail.com
|
|
# EMAIL_PASSWORD=your-app-password
|
|
# USE_TLS=True
|