SakuraPanel/configuration.php
Akkariin Meiko 6c881ff5c0
Feature: Invitation registration
增加凭邀请码注册功能,配置文件
2020-01-21 11:18:50 +08:00

65 lines
2.0 KiB
PHP
Raw Permalink 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.

<?php
$_config = Array(
/* 站点名称 */ 'sitename' => 'Sakura Panel',
// 会显示在标题等地方
/* 站点简介 */ 'description' => '内网穿透管理面板',
// 会显示在大部分地方
// 数据库相关配置
/* 地址 */ 'db_host' => '127.0.0.1',
/* 端口 */ 'db_port' => 3306,
/* 账号 */ 'db_user' => 'root',
/* 密码 */ 'db_pass' => '12345678',
/* 名称 */ 'db_name' => 'spanel',
/* 编码 */ 'db_code' => 'utf8mb4',
// 新注册用户相关设置
'register' => Array(
/* 允许注册 */ 'enable' => true,
/* 赠送流量 */ 'traffic' => 1024, // 1GB 流量
/* 隧道数量 */ 'proxies' => 5,
/* 需要邀请 */ 'invite' => false
),
// 谷歌验证码相关配置
'recaptcha' => Array(
/* 是否启用 */ 'enable' => true,
/* 前端密钥 */ 'sitekey' => '',
/* 后端密钥 */ 'sitetoken' => ''
),
// 签到功能相关配置
// 开启后,允许用户通过签到获得流量
// 每次签到可以获得随机流量,取值于最小奖励和最大奖励之间,单位 GB
'sign' => Array(
/* 是否启用 */ 'enable' => true,
/* 最小奖励 */ 'min' => 1,
/* 最大奖励 */ 'max' => 10
),
// 邮件功能相关设置
// 如果服务器需要 SSL请在主机地址前面加 ssl://
'smtp' => Array(
/* 是否启用 */ 'enable' => true,
/* 主机地址 */ 'host' => 'smtp.example.com',
/* 主机端口 */ 'port' => 25,
/* 发信账号 */ 'user' => 'noreply@example.com',
/* 发信密码 */ 'pass' => '12345678',
/* 发信邮箱 */ 'mail' => 'noreply@example.com'
),
'proxies' => Array(
/* 最小端口 */ 'min' => 1024,
/* 最大端口 */ 'max' => 65535,
/* 保留端口 */ 'protect' => Array(
// 保留端口格式: 起始端口 => 结束端口,
// 起始端口必须大于结束端口,否则会引发意外错误
// 下面这两个是示例保留端口,可删掉或注释
25565 => 25656,
30000 => 31000,
),
),
);