ignore config.php
This commit is contained in:
parent
a95105205b
commit
bde0d9aac5
1
.gitignore
vendored
1
.gitignore
vendored
@ -1 +1,2 @@
|
||||
textures/*
|
||||
config.php
|
||||
|
24
config.example.php
Normal file
24
config.example.php
Normal file
@ -0,0 +1,24 @@
|
||||
<?php
|
||||
/* MySQL 数据库名 */
|
||||
define('DB_NAME', 'skin');
|
||||
|
||||
/* MySQL 用户名 */
|
||||
define('DB_USER', 'root');
|
||||
|
||||
/* MySQL 连接密码 */
|
||||
define('DB_PASSWD', 'root');
|
||||
|
||||
/* MySQL 主机 */
|
||||
define('DB_HOST', 'localhost');
|
||||
|
||||
/* 盐,用于 token 加密,修改为任意随机字符串 */
|
||||
define('SALT', '9tvsh55d*s');
|
||||
|
||||
/* 同一 IP 最大可注册账户数 */
|
||||
define('REGS_PER_IP', 2);
|
||||
|
||||
/* 优先使用的 Json API,0 为 CustomSkinLoader API, 1 为 UniSkinAPI */
|
||||
define('API_TYPE', 1);
|
||||
|
||||
/* 站点名称,推荐英文(字体原因) */
|
||||
define('SITE_TITLE', 'Blessing Skin Server');
|
Loading…
Reference in New Issue
Block a user