-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy path.env.example
More file actions
30 lines (24 loc) · 876 Bytes
/
.env.example
File metadata and controls
30 lines (24 loc) · 876 Bytes
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
# CertAuth Docker Compose Environment Variables Example
# Copy this file to .env and customize as needed
# Development mode (set to false for production)
CERTAUTH_DEVELOPMENT=true
# Admin password for accessing admin interfaces
CERTAUTH_ADMIN_PASSWORD=admin123
# Service URLs (change for production domains)
CERTAUTH_URL=https://certauth.localhost
CERTSEC_URL=https://certsec.localhost
ONBOARD_URL=https://onboard.localhost
# Service ports
CERTAUTH_PORT=8010
CERTSEC_PORT=8011
ONBOARD_PORT=8012
# TSA (Timestamp Authority) credentials
# These are dummy values for local development
# Replace with real credentials for production
TSA_USER=dev_user
TSA_PASSWORD=dev_password
# SMTP credentials for email functionality
# These are dummy values for local development
# Replace with real SMTP credentials for production
SMTP_USERNAME=dev@localhost
SMTP_PASSWORD=dev_password