49 lines
1.0 KiB
Bash
49 lines
1.0 KiB
Bash
RUST_LOG=warn,api=info
|
|
|
|
NGINX_HOST=localhost
|
|
NGINX_SSL_ENABLED=false
|
|
NGINX_PROTOCOL=http
|
|
NGINX_HTTP_PORT=8080
|
|
NGINX_HTTPS_PORT=8443
|
|
NGINX_MINIO_HOST=host.docker.internal
|
|
NGINX_API_HOST=host.docker.internal
|
|
NGINX_UI_HOST=host.docker.internal
|
|
|
|
POSTGRES_HOST=localhost
|
|
POSTGRES_USER=aviation
|
|
POSTGRES_PASSWORD=CHANGEME
|
|
POSTGRES_NAME=aviation
|
|
POSTGRES_PORT=5432
|
|
|
|
REDIS_HOST=localhost
|
|
REDIS_PORT=6379
|
|
|
|
MINIO_HOST=localhost
|
|
MINIO_ROOT_USER=aviation
|
|
MINIO_ROOT_PASSWORD=CHANGEME
|
|
MINIO_BUCKET=aviation
|
|
MINIO_PROTOCOL=http
|
|
MINIO_PORT=9000
|
|
MINIO_PORT_INTERNAL=9001
|
|
MINIO_BROWSER_REDIRECT_URL=${NGINX_PROTOCOL}://${NGINX_HOST}:${NGINX_HTTPS_PORT}/minio/
|
|
|
|
UI_PROTOCOL=http
|
|
UI_PORT=3000
|
|
|
|
API_PROTOCOL=http
|
|
API_HOST=0.0.0.0
|
|
API_PORT=5000
|
|
|
|
SSL_CA_NAME=ca
|
|
SSL_CA_PATH=../ssl/${SSL_CA_NAME}.pem
|
|
SSL_CERT_PATH=../ssl/localhost.crt
|
|
SSL_CERT_KEY_PATH=../ssl/localhost.key
|
|
|
|
VITE_API_URL=${NGINX_PROTOCOL}://${NGINX_HOST}:${NGINX_HTTPS_PORT}/api
|
|
|
|
ENVIRONMENT=development
|
|
ADMIN_EMAIL=admin@example.com
|
|
ADMIN_PASSWORD=CHANGEME
|
|
|
|
AVIATION_WEATHER_URL=https://aviationweather.gov/api/data
|