mirror of
https://github.com/makeplane/plane
synced 2025-08-07 19:59:33 +00:00
47 lines
1.0 KiB
Plaintext
47 lines
1.0 KiB
Plaintext
# Database Settings
|
|
POSTGRES_USER="plane"
|
|
POSTGRES_PASSWORD="plane"
|
|
POSTGRES_DB="plane"
|
|
PGDATA="/var/lib/postgresql/data"
|
|
|
|
# Redis Settings
|
|
REDIS_HOST="plane-redis"
|
|
REDIS_PORT="6379"
|
|
|
|
# RabbitMQ Settings
|
|
RABBITMQ_HOST="plane-mq"
|
|
RABBITMQ_PORT="5672"
|
|
RABBITMQ_USER="plane"
|
|
RABBITMQ_PASSWORD="plane"
|
|
RABBITMQ_VHOST="plane"
|
|
|
|
# AWS Settings
|
|
AWS_REGION=""
|
|
AWS_ACCESS_KEY_ID="access-key"
|
|
AWS_SECRET_ACCESS_KEY="secret-key"
|
|
AWS_S3_ENDPOINT_URL="http://plane-minio:9000"
|
|
# Changing this requires change in the nginx.conf for uploads if using minio setup
|
|
AWS_S3_BUCKET_NAME="uploads"
|
|
# Maximum file upload limit
|
|
FILE_SIZE_LIMIT=5242880
|
|
|
|
# GPT settings
|
|
OPENAI_API_BASE="https://api.openai.com/v1" # deprecated
|
|
OPENAI_API_KEY="sk-" # deprecated
|
|
GPT_ENGINE="gpt-3.5-turbo" # deprecated
|
|
|
|
# Settings related to Docker
|
|
DOCKERIZED=1 # deprecated
|
|
|
|
# set to 1 If using the pre-configured minio setup
|
|
USE_MINIO=1
|
|
|
|
# Nginx Configuration
|
|
NGINX_PORT=80
|
|
|
|
# Force HTTPS for handling SSL Termination
|
|
MINIO_ENDPOINT_SSL=0
|
|
|
|
# API key rate limit
|
|
API_KEY_RATE_LIMIT="60/minute"
|