| 1234567891011121314151617181920212223 |
- <?php
- if ($_SERVER['SERVER_NAME']=='fp') {
- $development_postfix = ':8080/';
- }
- else {
- $development_postfix = '/';
- }
- $config['base_url'] = 'https://'.$_SERVER['SERVER_NAME'].$development_postfix; // Base URL including trailing slash (e.g. http://localhost/)
- $config['default_controller'] = 'main'; // Default controller to load
- $config['error_controller'] = 'error'; // Controller used for errors (e.g. 404, 500 etc)
- $config['db_host'] = 'localhost'; // Database host (e.g. localhost)
- $config['db_name'] = 'openws'; // Database name
- $config['db_username'] = 'openws'; // Database username
- $config['db_password'] = '5jqPQEPGUihnY5XM6oPR'; // Database password
- $config['api_url'] = 'https://szollosil.bbus.smbinfo.hu/api/index.php';
- $config['api_key'] = '92JxvN5Zeti4E1FDwKg0QPEl3md4vY63';
- ?>
|