mirror of
https://github.com/islehorse/HISP.git
synced 2025-04-07 13:45:42 +12:00
14 lines
280 B
PHP
Executable file
14 lines
280 B
PHP
Executable file
<?php
|
|
$server_ip = '127.0.0.1';
|
|
$server_port = 12321;
|
|
|
|
$dbname = 'beta';
|
|
$dbuser = 'root';
|
|
$dbpass = 'test123';
|
|
$dbhost = '127.0.0.1';
|
|
|
|
# CHANGE THESE CREDENTIALS,
|
|
# ANYONE CAN BECOME AN ADMIN ON YOUR SERVER
|
|
# IF THEY HAVE THIS PASSWORD!!!
|
|
$admin_portal_password = "test123";
|
|
?>
|