Files
pydio_cells/.env.example
2026-04-10 09:04:01 +01:00

35 lines
1.1 KiB
Plaintext
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.
# =================================================================
# Pydio Cells 部署环境配置文件示例 (.env.example)
# 备注:
# 1. 变量值建议只包含字母和数字,避免使用 &、$、*、! 等特殊字符,
# 以防止 Shell 解析或 Docker Compose 解析时出现转义错误。
# 2. 修改此文件后,请重命名为 .env
# =================================================================
# --- MariaDB 数据库配置 ---
# MariaDB root 用户的超级密码
MYSQL_ROOT_PASSWORD=Kj9mP2vLq8xR7
# Cells 专用的数据库名称
MYSQL_DATABASE=pydiocells
# Cells 连接数据库使用的用户名
CELLS_DB_USER=pydio
# Cells 连接数据库使用的密码
CELLS_DB_PASSWORD=Xt5nM3wR9kL2
# --- Pydio Cells 服务配置 ---
# 外部访问域名 (必须包含协议 https末尾不要带斜杠)
# 如果你配置了 SSL 证书,请确保这里是 https
CELLS_EXTERNAL=https://localhost:8080
# 站点标签(在浏览器标题栏显示的名称)
CELLS_SITE_LABEL=PydioCellsTest
# --- 宿主机端口配置 ---
# 你希望在宿主机上监听的端口
HOST_PORT=8080