1
0
Fork 0
mirror of https://github.com/YunoHost-Apps/freshrss_ynh.git synced 2024-09-03 18:36:33 +02:00
freshrss_ynh/conf/config.php
2014-07-23 16:56:39 +02:00

25 lines
No EOL
563 B
PHP

<?php
return array (
'general' =>
array (
'environment' => 'production',
'salt' => 'yunosalt',
'base_url' => 'yunopath',
'title' => 'FreshRSS',
'default_user' => 'yunoadminuser',
'allow_anonymous' => false,
'allow_anonymous_refresh' => false,
'auth_type' => 'http_auth',
'api_enabled' => true,
'unsafe_autologin_enabled' => false,
),
'db' =>
array (
'type' => 'mysql',
'host' => 'localhost',
'user' => 'yunouser',
'password' => 'yunopass',
'base' => 'yunobase',
'prefix' => false,
),
);