generated from oci/template
Some checks failed
Build Docker Image on Commit / build-and-publish (push) Failing after 3m8s
26 lines
877 B
Text
26 lines
877 B
Text
# TAK Server Docker Compose Environment Variables
|
|
# Copy this file to .env and customize the values
|
|
|
|
# Path to your TAK Server archive
|
|
TAK_ARCHIVE_PATH=/path/to/takserver-docker-5.4-RELEASE-19.zip
|
|
|
|
# TAK Server Ports (adjust as needed for your environment)
|
|
TAK_HTTPS_PORT=8443
|
|
TAK_CERT_PORT=8444
|
|
TAK_FEDERATION_PORT=8446
|
|
TAK_STREAMING_API_PORT=9000
|
|
TAK_STREAMING_API_TLS_PORT=9001
|
|
|
|
# Reverse Proxy Configuration (optional)
|
|
# Set to true to enable reverse proxy with your own SSL cert
|
|
ENABLE_REVERSE_PROXY=false
|
|
|
|
# Domain for your TAK Server (used by reverse proxy)
|
|
TAK_DOMAIN=takserver.example.com
|
|
|
|
# SSL Certificate paths (for reverse proxy)
|
|
SSL_CERT_PATH=/path/to/your/ssl/cert.pem
|
|
SSL_KEY_PATH=/path/to/your/ssl/private.key
|
|
|
|
# Optional: Override the default TAK archive path inside the container
|
|
# TAK_ARCHIVE_CONTAINER_PATH=/tak-archive/takserver-docker-5.4-RELEASE-19.zip
|