-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.env.example
More file actions
47 lines (39 loc) · 2.19 KB
/
.env.example
File metadata and controls
47 lines (39 loc) · 2.19 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
# 网站地图关键词分析工具 - 环境变量模板
# 复制此文件为 .env 并填入真实值
# =============================================================================
# SEO API 配置
# =============================================================================
# SEO API地址列表(seokey.vip谷歌趋势查询接口,多个地址用逗号分隔,系统会自动轮询使用)
SEO_API_URLS=https://k3.seokey.vip,https://ads.seokey.vip
# =============================================================================
# 后端API配置
# =============================================================================
# 后端API基础地址
BACKEND_API_URL=https://work.example.com
# 后端API认证令牌
BACKEND_API_TOKEN=your-backend-api-token-here
# =============================================================================
# 监控网站配置
# =============================================================================
# 要监控的sitemap URL列表(多个URL用逗号分隔)
SITEMAP_URLS=https://example1.com/sitemap.xml,https://example2.com/sitemap.xml,https://example3.com/sitemap.xml
# =============================================================================
# 加密配置
# =============================================================================
# 数据加密密钥(推荐使用66字符吉利密钥,也支持44字符Fernet密钥)
ENCRYPTION_KEY=your-66-character-lucky-encryption-key-with-letters-and-numbers
# =============================================================================
# 开发环境配置
# =============================================================================
# 日志级别 (DEBUG, INFO, WARNING, ERROR)
LOG_LEVEL=INFO
# 是否启用调试模式
DEBUG_MODE=false
# =============================================================================
# 安全说明
# =============================================================================
# 1. 请勿将此文件中的真实值提交到版本控制系统
# 2. 在生产环境中,请使用环境变量或密钥管理服务
# 3. 定期轮换API密钥和加密密钥
# 4. 确保所有密钥具有足够的复杂度
# =============================================================================