15479603
Alex Savenko
initialize
|
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
|
<?php
/**
* Read more on Config Files
* @link http://phalcon-rest.redound.org/config_files.html
*/
return [
'debug' => true,
'hostName' => 'http://test-30.artweb.com.ua',
'clientHostName' => 'http://test-30.artweb.com.ua',
'database' => [
// Change to your own configuration
'adapter' => 'Postgresql',
'host' => 'localhost',
'username' => 'postgres',
'password' => '5cZw3rPC',
'dbname' => 'analytics',
],
'cors' => [
'allowedOrigins' => ['*']
]
];
|