blessing-skin-server/config.php

17 lines
345 B
PHP
Raw Normal View History

2016-01-03 14:08:23 +08:00
<?php
/* Blessing Skin Server 数据库的名称 */
define('DB_NAME', 'skin');
2016-01-03 14:08:23 +08:00
/* MySQL 数据库用户名 */
define('DB_USER', 'root');
2016-01-03 14:08:23 +08:00
/* MySQL 数据库密码 */
define('DB_PASSWD', 'root');
2016-01-03 14:08:23 +08:00
/* MySQL 主机 */
define('DB_HOST', 'localhost');
/* 盐,用于 token 验证,自行修改 */
define('SALT', '9tvsh55d*s');
?>