28 lines
1022 B
Plaintext
28 lines
1022 B
Plaintext
# Traefik Environment Configuration for CitySensor Registry
|
|
# Copy this file to .env.production and adjust the values
|
|
|
|
# Domain Configuration
|
|
DOMAIN=my.domain.com
|
|
ACME_EMAIL=your-email@domain.com
|
|
|
|
# Database Configuration
|
|
MYSQL_PASSWORD=your_secure_mysql_password_here
|
|
MYSQL_ROOT_PASSWORD=your_super_secure_root_password_here
|
|
|
|
# Services accessible via subdomains:
|
|
# - Frontend: https://rezepte.${DOMAIN}
|
|
# - Traefik Dashboard: https://traefik.${DOMAIN} (admin:admin)
|
|
# - phpMyAdmin: https://phpmyadmin.${DOMAIN}
|
|
# - Portainer: https://portainer.${DOMAIN}
|
|
|
|
# Docker Registry Authentication (CitySensor)
|
|
DOCKER_REGISTRY=docker.citysensor.de
|
|
DOCKER_USERNAME=your_username_here
|
|
DOCKER_PASSWORD=your_password_here
|
|
|
|
# Docker Registry Images (CitySensor)
|
|
BACKEND_IMAGE=docker.citysensor.de/rezepte-backend:latest
|
|
FRONTEND_IMAGE=docker.citysensor.de/rezepte-frontend:latest
|
|
|
|
# Optional: JWT Secret (currently not used, but prepared for future authentication)
|
|
# JWT_SECRET=your_super_secure_jwt_secret_minimum_32_characters_long |