This repository has been archived on 2018-05-28. You can view files and clone it, but cannot push or open issues or pull requests.
BBB-Simple-ACS/server/constants.php

12 lines
256 B
PHP

<?php
const _MEMCACHED_HOST = '127.0.0.1';
const _MEMCACHED_PORT = '11211';
const _MYSQL_CONFIG = [
'host' => '127.0.0.1',
'port' => '3306',
'user' => 'root',
'password' => 'generator',
'db_name' => 'acs',
'charset' => 'utf8mb4'
];