1
0
mirror of https://github.com/pooneyy/1Panel-Appstore.git synced 2026-03-18 01:01:02 +08:00
pooneyy b466db7662
feat(docmost): add comprehensive configuration and update app structure
- add new config.env file with detailed environment variables for app, storage, email, and telemetry settings
- expand data.yml form fields with multi-language support, database, and redis service configurations
- refactor docker-compose.yml to use 1panel network, environment variables, and config.env file
- add init.sh script for generating APP_SECRET
- update README files with detailed configuration instructions and feature descriptions
- enhance data.yml metadata with multi-language descriptions and architecture support
- update application logo
2026-01-21 03:08:10 +08:00

60 lines
1.4 KiB
Bash
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

################### 应用程序配置 ###################
# 应用程序的基本 URL。它是可选的但对于在电子邮件中显示正确的链接很有用。
# APP_URL=https://docmost.example.com
# JWT 的过期时间。默认为 30 天。
JWT_TOKEN_EXPIRES_IN=30d
##################### 存储配置 #####################
# 存储驱动。默认为 local。 local|s3
# STORAGE_DRIVER=local
# AWS S3 访问密钥 ID
# AWS_S3_ACCESS_KEY_ID=
# AWS S3 秘密访问密钥
# AWS_S3_SECRET_ACCESS_KEY=
# AWS S3 存储桶所在区域
# AWS_S3_REGION=
# AWS S3 存储桶名称
# AWS_S3_BUCKET=
# AWS S3 服务端点 URL(可选)。如果使用第三方 S3 兼容存储,请设置此值。
# AWS_S3_ENDPOINT=
# AWS S3 强制请求使用路径式寻址(可选) true|false
# AWS_S3_FORCE_PATH_STYLE=
################## 存储文件上传限制 ##################
# 每次上传的最大文件大小。默认为 50MB
# FILE_UPLOAD_SIZE_LIMIT=50mb
# 最大文件导入大小限制。默认为 200MB。
# FILE_IMPORT_SIZE_LIMIT=200mb
##################### 邮件配置 #####################
# 添加新用户需要配置 SMTP
# MAIL_DRIVER=smtp
# SMTP_HOST=
# SMTP_PORT=
# SMTP_USERNAME=
# SMTP_PASSWORD=
# SMTP_SECURE=
# MAIL_FROM_ADDRESS=
# MAIL_FROM_NAME=
############ DRAW.IO(Diagrams.net)配置 ############
DRAWIO_URL=https://embed.diagrams.net
###################### 遥测 #######################
# 是否禁用遥测 true|false
DISABLE_TELEMETRY=true