.env.example 6.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133
  1. #####################################################################
  2. # 注意事项
  3. #
  4. # - 环境变量的格式为“键=值”,顶格写,注意等号两边不能有空格,值可以用单引号或者双引号引起来,不引也行(下面的特殊情况必须引起来)
  5. # - 因为环境变量中“#”代表注释,若密码中存在“#”字符的,一定要使用单引号将整个密码引起来,否则解析会在“#”字符前截止,如果密码中存在单双引号的,
  6. # 需要在单双引号前加“\”转义
  7. # - 配置多账户不可省略单引号,且多个账户和密码的格式必须是“<账户1>@<密码1>|<账户2>@<密码2>|<账户3>@<密码3>”,不要有空格,就算有程序也会给你干掉
  8. # e.g. MULTIPLE_ACCOUNTS='<账户1>@<密码1>|<账户2>@<密码2>|<账户3>@<密码3>'
  9. # 注意不要省略“<>”符号,否则无法正确匹配
  10. # - 若你只有单个账户,只配置 FREENOM_USERNAME 和FREENOM_PASSWORD 就够了
  11. # - 单账户和多账户的配置会被合并在一起读取并去重
  12. #####################################################################
  13. # .env 文件版本
  14. ENV_FILE_VERSION='v2.2'
  15. ###################### 账户配置 Account config #########################
  16. # Freenom 账户 Freenom Account
  17. [email protected]
  18. # Freenom 密码 Freenom password
  19. FREENOM_PASSWORD=''
  20. # 多账户支持 Support for multiple accounts
  21. MULTIPLE_ACCOUNTS=''
  22. # Freenom 代理 e.g. http://127.0.0.1:1081 or socks5://127.0.0.1:1080
  23. FREENOM_PROXY=''
  24. ###################### end 账户配置 #########################
  25. ###################### 通知邮件配置 Email config #########################
  26. # 机器人邮箱账户 Email of robot
  27. [email protected]
  28. # 机器人邮箱密码(Gmail填密码,QQ邮箱或163邮箱填授权码) Password of the robot email
  29. MAIL_PASSWORD=''
  30. # 用于接收通知的邮箱 Email address used to receive notifications
  31. TO=''
  32. # 是否启用邮件推送功能 1:启用 0:不启用 Whether to enable email push features 1: enabled 0: not enabled
  33. MAIL_ENABLE=1
  34. # 自定义邮箱配置 Custom email config
  35. # 如果你想使用除 “QQ邮箱、163邮箱、Gmail、Outlook邮箱” 外的第三方邮箱或者自建邮箱服务作为机器人邮箱,可以自定义邮箱配置,否则请不要配置这些项
  36. # If you want to use third-party mailboxes or self-built mailbox services other than "QQ mailbox, 163 mailbox, Gmail,
  37. # Outlook mailbox" as robot mailbox, you can customize mailbox configuration, otherwise, please don't configure these items.
  38. # SMTP 服务器 SMTP server e.g. smtp.gmail.com
  39. MAIL_HOST=''
  40. # SMTP 端口号,一般是 587 或者 465 SMTP port
  41. MAIL_PORT=''
  42. # 邮件加密方式,一般是 tls 或者 ssl 或者 starttls Email encryption method
  43. MAIL_ENCRYPTION=''
  44. # end 自定义邮箱配置 end of custom email config
  45. ###################### end 通知邮件配置 #########################
  46. ###################### Telegram bot #########################
  47. # 可选配置,通过 Telegram bot 发送通知消息 This is an optional configuration to send notification messages via Telegram bot
  48. # 你的chat_id,通过发送“/start”给@userinfobot可以获取自己的id Your chat_id, you can get your own id by sending "/start" to @userinfobot
  49. TELEGRAM_CHAT_ID=''
  50. # 你的Telegram bot的token Token for your Telegram bot
  51. TELEGRAM_BOT_TOKEN=''
  52. # Telegram 代理 e.g. http://127.0.0.1:1081 or socks5://127.0.0.1:1080
  53. TELEGRAM_PROXY=''
  54. # 是否启用 Telegram Bot 功能 1:启用 0:不启用 Whether to enable Telegram Bot features 1: enabled 0: not enabled
  55. TELEGRAM_BOT_ENABLE=0
  56. ###################### end Telegram bot #########################
  57. ###################### 企业微信 #########################
  58. # 企业 ID Corporate ID
  59. WECHAT_CORP_ID=''
  60. # 应用的凭证密钥 Credential keys for enterprise WeChat applications
  61. WECHAT_CORP_SECRET=''
  62. # 应用 ID
  63. WECHAT_AGENT_ID=''
  64. # 是否启用企业微信送信功能 1:启用 0:不启用 Whether to enable the enterprise WeChat message push function 1: Enable 0: Do not enable
  65. WECHAT_ENABLE=0
  66. ###################### end 企业微信 #########################
  67. ###################### Server 酱 #########################
  68. # Server 酱的 SendKey
  69. SCT_SEND_KEY=''
  70. # 是否启用 Server 酱 送信功能 1:启用 0:不启用 Whether to enable the ServerChan message function 1: enabled 0: not enabled
  71. SCT_ENABLE=0
  72. ###################### end Server 酱 #########################
  73. ###################### Bark 送信 #########################
  74. # Bark key 打开 Bark App,注册设备后看到的 key Open the Bark App, register the device and see the key
  75. # 支持直接粘贴 “https://api.day.app/xxx/这里改成你自己的推送内容” 这类文本,程序会自动从中提取有效的 Bark key Support direct paste "https://api.day.app/xxx/这里改成你自己的推送内容" type of text, the program will automatically extract the valid Bark key from it
  76. BARK_KEY=''
  77. # Bark 域名 默认是 Bark 作者提供的服务,建议自建 The Bark URL defaults to the server provided by the Bark author, and it is recommended to build your own
  78. BARK_URL='https://api.day.app'
  79. # Bark 其它相关参数(保持默认即可)
  80. BARK_IS_ARCHIVE=''
  81. BARK_GROUP='FreeNom'
  82. BARK_LEVEL='active'
  83. BARK_ICON='https://q2.qlogo.cn/headimg_dl?dst_uin=593198779&spec=100'
  84. BARK_JUMP_URL=''
  85. BARK_SOUND='gotosleep'
  86. # 是否启用 Bark 推送消息 1:启用 0:不启用 Whether to enable Bark push messaging 1: Enable 0: Do not enable
  87. BARK_ENABLE=0
  88. ###################### end Bark 送信 #########################
  89. # 通知频率 0:仅当有续期操作的时候 1:每次执行 Notification frequency 0: Only when there is a renewal operation 1: Each execution
  90. NOTICE_FREQ=1
  91. # 是否验证服务器证书 1:验证 0:不验证 Whether to verify the server certificate 1: verify 0: no verification
  92. VERIFY_SSL=0
  93. # 是否开启 Debug 模式 1:开启 0:关闭 Whether to turn on Debug mode 1: On 0: Off
  94. DEBUG=0
  95. # 检测是否有新版本可用,发现新版本时推送消息通知 1:开启 0:关闭 Automatically detects if a new version is available and pushes a message notification when a new version is found 1: On 0: Off
  96. NEW_VERSION_DETECTION=1
  97. # 应用语言配置 Application language configuration, the supported values are zh or en, zh means Chinese, en means English
  98. LANGUAGE=zh