41 lines
1.5 KiB
Plaintext
41 lines
1.5 KiB
Plaintext
# =============================================================================
|
|
# STELLA OPS EU COMPLIANCE ENVIRONMENT
|
|
# =============================================================================
|
|
# Environment template for EU (eIDAS) compliance deployments.
|
|
#
|
|
# Usage with simulation:
|
|
# cp env/compliance-eu.env.example .env
|
|
# docker compose -f docker-compose.stella-ops.yml \
|
|
# -f docker-compose.compliance-eu.yml \
|
|
# -f docker-compose.crypto-sim.yml up -d
|
|
#
|
|
# Usage for production:
|
|
# docker compose -f docker-compose.stella-ops.yml \
|
|
# -f docker-compose.compliance-eu.yml up -d
|
|
#
|
|
# Note: EU eIDAS deployments typically integrate with external Qualified Trust
|
|
# Service Providers (QTSPs) rather than hosting crypto locally.
|
|
#
|
|
# =============================================================================
|
|
|
|
# Crypto profile
|
|
STELLAOPS_CRYPTO_PROFILE=eu
|
|
|
|
# =============================================================================
|
|
# eIDAS / QTSP CONFIGURATION
|
|
# =============================================================================
|
|
|
|
# Qualified Trust Service Provider integration (configure in application settings)
|
|
# EIDAS_QTSP_URL=https://qtsp.example.eu
|
|
# EIDAS_QTSP_CLIENT_ID=
|
|
# EIDAS_QTSP_CLIENT_SECRET=
|
|
|
|
# =============================================================================
|
|
# CRYPTO SIMULATION (for testing only)
|
|
# =============================================================================
|
|
|
|
# Enable simulation mode
|
|
STELLAOPS_CRYPTO_ENABLE_SIM=1
|
|
STELLAOPS_CRYPTO_SIM_URL=http://sim-crypto:8080
|
|
SIM_CRYPTO_PORT=18090
|