freshrss/data/config.php
2020-10-20 10:18:32 -07:00

69 lines
1.6 KiB
PHP

<?php
return array (
'environment' => 'production',
'salt' => 'a22ccca4febd38bd10ea7420d979a1fb82e77926',
'base_url' => 'https://fresh.airdog.site',
'auto_update_url' => 'https://update.freshrss.org',
'language' => 'en',
'title' => 'FreshRSS',
'meta_description' => '',
'default_user' => 'fossilfranv',
'force_email_validation' => false,
'allow_anonymous' => true,
'allow_anonymous_refresh' => true,
'auth_type' => 'form',
'http_auth_auto_register' => true,
'http_auth_auto_register_email_field' => '',
'api_enabled' => true,
'unsafe_autologin_enabled' => false,
'simplepie_syslog_enabled' => true,
'pubsubhubbub_enabled' => true,
'allow_robots' => false,
'allow_referrer' => false,
'limits' =>
array (
'cookie_duration' => 2592000,
'cache_duration' => 800,
'timeout' => 15,
'max_inactivity' => 9223372036854775807,
'max_feeds' => 16384,
'max_categories' => 16384,
'max_registrations' => 1,
),
'curl_options' =>
array (
),
'db' =>
array (
'type' => 'pgsql',
'host' => 'freshrss-db',
'user' => 'itsme',
'password' => 'notagain',
'base' => 'freshrss',
'prefix' => '',
'connection_uri_params' => '',
'pdo_options' =>
array (
),
),
'mailer' => 'mail',
'smtp' =>
array (
'hostname' => '',
'host' => 'localhost',
'port' => 25,
'auth' => false,
'auth_type' => '',
'username' => '',
'password' => '',
'secure' => '',
'from' => 'root@localhost',
),
'extensions_enabled' =>
array (
'Google-Groups' => true,
'Tumblr-GDPR' => true,
),
'disable_update' => false,
);