-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy path.env.example
More file actions
65 lines (53 loc) · 2.74 KB
/
.env.example
File metadata and controls
65 lines (53 loc) · 2.74 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
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
# Environment Variables Template for Survey Dashboard
# Copy this file to .env and update with your actual values
# Command: cp .env.example .env
# ============================================================================
# Docker Compose Configuration
# ============================================================================
# Project name - used as prefix for container names
# Example: survey-dashboard_nginx_1, survey-dashboard_dashboard_1
COMPOSE_PROJECT_NAME=survey-dashboard
# ============================================================================
# Application Configuration
# ============================================================================
# Port the Panel application runs on inside the container
# Default: 5006 (Panel's default port)
APP_PORT=
# ============================================================================
# Nginx Configuration
# ============================================================================
# Port nginx exposes on the host machine
# Default: 80 (standard HTTP port), 443 (standard HTTPS port)
# Change to 8080/8443 if 80/443 are already in use
NGINX_PORT=
# Your domain name
# IMPORTANT: For HTTPS to work, this MUST be a real domain that points to your server
# In development: Use 'localhost' (HTTPS won't work, only HTTP)
# In production: Use your actual domain (e.g., survey.example.com)
# This domain is used by:
# - nginx-proxy: Routes traffic from this domain to the dashboard
# - acme-companion: Requests SSL certificate for this domain from Let's Encrypt
HOST=
# ============================================================================
# SSL/HTTPS Configuration (Let's Encrypt)
# ============================================================================
# Your email address for Let's Encrypt certificate registration
# REQUIRED for production HTTPS deployment
# Let's Encrypt uses this email to:
# - Send certificate expiration warnings (if auto-renewal fails)
# - Send security notices about your certificates
# - Contact you about your Let's Encrypt account
# Example: admin@example.com or your-email@gmail.com
LETSENCRYPT_EMAIL=
# ============================================================================
# Python Configuration
# ============================================================================
# Keep Python output unbuffered for better logging
PYTHONUNBUFFERED=1
# ============================================================================
# NOTES
# ============================================================================
# - Never commit the .env file to version control
# - .env is listed in .gitignore to prevent accidental commits
# - Update .env.example when adding new environment variables
# - In production, consider using Docker secrets or a secrets manager