server.develop.php
539 Bytes
<?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' => ['*']
]
];