mirror of
https://github.com/tips-of-mine/gestion-certificats2.git
synced 2025-06-28 02:28:42 +02:00
24 lines
506 B
Plaintext
24 lines
506 B
Plaintext
# Base de données
|
|
DB_HOST=mysql
|
|
DB_NAME=cert_gestion
|
|
DB_USER=user
|
|
DB_PASSWORD=password_secret
|
|
|
|
# Application
|
|
APP_NAME="Certificate Management"
|
|
APP_ENV=development
|
|
APP_LOG_PATH=/var/log/app/app.log
|
|
|
|
# Sécurité
|
|
SESSION_SECRET=your-super-secret-session-key-change-in-production
|
|
|
|
# PKI Configuration
|
|
ROOT_CA_PATH=/opt/tls/root
|
|
INTERMEDIATE_CA_PATH_BASE=/opt/tls/intermediate
|
|
SCRIPTS_PATH=/opt/scripts
|
|
|
|
# OCSP
|
|
OCSP_URL=http://ocsp.cert-gestion.local/
|
|
|
|
# Frontend
|
|
VITE_API_BASE_URL=http://localhost:980/api/v1 |