mirror of
https://github.com/bs-community/blessing-skin-server.git
synced 2025-03-07 15:16:40 +08:00
22 lines
463 B
PHP
22 lines
463 B
PHP
<?php
|
|
/* Blessing Skin Server Database Name */
|
|
define('DB_NAME', 'skin');
|
|
|
|
/* MySQL Username */
|
|
define('DB_USER', 'root');
|
|
|
|
/* MySQL Password */
|
|
define('DB_PASSWD', 'root');
|
|
|
|
/* MySQL Host */
|
|
define('DB_HOST', 'localhost');
|
|
|
|
/* Salt for encrypting token, Change it to any random string */
|
|
define('SALT', '9tvsh55d*s');
|
|
|
|
/* Max amount of accounts per IP */
|
|
define('REGS_PER_IP', 2);
|
|
|
|
/* Do not change this */
|
|
define('DIR', dirname(__FILE__));
|