PHP Classes

File: config-sample.php

Recommend this page to a friend!
  Classes of Subin Siby   Lobby   config-sample.php   Download  
File: config-sample.php
Role: Auxiliary script
Content type: text/plain
Description: Auxiliary script
Class: Lobby
Web OS to install and run Web applications
Author: By
Last change: version 0.9.1 berly
Date: 7 years ago
Size: 605 bytes
 

Contents

Class file image Download
<?php
/**
 * A Sample Configuration File
 * ---------------------------
 * If you're doing manual installation, you can obtain lobbyID & secureID from
 * http://lobby.subinsb.com/api/lobby/installation-id
 *
 */
return array(
 
'db' => array(
   
'host' => '127.0.0.1',
   
'port' => '3306',
   
'username' => '',
   
'password' => '',
   
'dbname' => '',
   
'prefix' => 'l_'
 
),
 
/**
   * The GLOBAL unique ID of YOUR Lobby installation
   */
 
'lobbyID' => '',
 
/**
   * A Secure Identity of YOUR Lobby Installation.
   * Never reveal it TO ANYONE
   */
 
'secureID' => '',
 
'debug' => false
);
?>