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

23 lines
521 B
PHP
Raw Normal View History

2014-07-23 15:52:50 +02:00
<?php
2015-02-09 18:08:17 +01:00
2015-02-08 18:55:48 +01:00
return array (
'environment' => 'production',
'salt' => 'yunosalt',
'title' => 'FreshRSS',
'default_user' => 'yunoadminuser',
'auth_type' => 'http_auth',
'db' =>
2014-07-23 15:52:50 +02:00
array (
'type' => 'mysql',
'host' => 'localhost',
'user' => 'yunouser',
'password' => 'yunopass',
'base' => 'yunobase',
'prefix' => false,
),
2015-02-08 18:55:48 +01:00
'allow_anonymous' => false,
'allow_anonymous_refresh' => false,
'unsafe_autologin_enabled' => false,
'api_enabled' => true,
2015-02-09 18:08:17 +01:00
'extensions_enabled' => array(),
2014-07-23 15:52:50 +02:00
);