-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathenv.example
More file actions
86 lines (73 loc) · 3.22 KB
/
env.example
File metadata and controls
86 lines (73 loc) · 3.22 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
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
# OpenLIT Environment Configuration
# Copy this file to .env and customize the values for your deployment
# =============================================================================
# Database Configuration
# =============================================================================
OPENLIT_DB_NAME=openlit
OPENLIT_DB_USER=default
OPENLIT_DB_PASSWORD=OPENLIT
# =============================================================================
# Application Configuration
# =============================================================================
PORT=3000
DOCKER_PORT=3000
# =============================================================================
# OAuth Configuration (Optional)
# =============================================================================
# Google OAuth
GOOGLE_CLIENT_ID=
GOOGLE_CLIENT_SECRET=
# GitHub OAuth
GITHUB_CLIENT_ID=
GITHUB_CLIENT_SECRET=
# =============================================================================
# OpAMP Server Configuration
# =============================================================================
# Environment Mode
# Options: development, production, testing
# - development: Relaxed security, insecure_skip_verify=true by default
# - production: Strict security, full certificate verification, mutual TLS
# - testing: Similar to development, optimized for automated testing
# Default: production (secure by default)
OPAMP_ENVIRONMENT=production
# TLS Configuration
# Skip certificate verification (development only)
# Set to false for production with proper CA certificates
# Default: false (secure by default)
OPAMP_TLS_INSECURE_SKIP_VERIFY=false
# Require client certificates for mutual TLS
# Enabled by default for enhanced security
# Default: true (secure by default)
OPAMP_TLS_REQUIRE_CLIENT_CERT=true
# TLS Version Configuration
# Minimum and maximum TLS versions (1.0, 1.1, 1.2, 1.3)
OPAMP_TLS_MIN_VERSION=1.2
OPAMP_TLS_MAX_VERSION=1.3
# Logging Configuration
# Options: debug, info, warn, error
OPAMP_LOG_LEVEL=info
# =============================================================================
# Certificate Configuration (Advanced)
# =============================================================================
# Certificate directory path (usually managed by Docker)
# OPAMP_CERTS_DIR=/app/opamp/certs
# =============================================================================
# Production Deployment Example (Default)
# =============================================================================
# Production settings are now the default for enhanced security:
#
# OPAMP_ENVIRONMENT=production # Default
# OPAMP_TLS_INSECURE_SKIP_VERIFY=false # Default
# OPAMP_TLS_REQUIRE_CLIENT_CERT=true # Default
# OPAMP_TLS_MIN_VERSION=1.2 # Default
# OPAMP_TLS_MAX_VERSION=1.3 # Default
# OPAMP_LOG_LEVEL=info # Default
# =============================================================================
# Development Deployment Example
# =============================================================================
# For development, override these settings for relaxed security:
#
# OPAMP_ENVIRONMENT=development
# OPAMP_TLS_INSECURE_SKIP_VERIFY=true
# OPAMP_TLS_REQUIRE_CLIENT_CERT=false
# OPAMP_LOG_LEVEL=debug