sunetdrive/templates/lookup/config.php.erb

30 lines
635 B
Plaintext
Raw Normal View History

2023-02-13 09:44:56 +00:00
<?php
$CONFIG = [
2024-05-20 08:44:37 +00:00
'AUTH_KEY' => "<%= @gss_jwt_key %>",
2023-02-13 09:44:56 +00:00
'DB' => [
'host' => "<%= @dbhost %>",
'db' => "lookup" ,
'user' => "lookup",
'pass' => "<%= @mysql_user_password %>",
],
2024-05-20 08:44:37 +00:00
'EMAIL_SENDER' => '<%= @email_sender %>',
'ERROR_VERBOSE' => false,
2023-02-13 09:44:56 +00:00
'GLOBAL_SCALE' => true,
2024-05-20 08:44:37 +00:00
'IP_BLACKLIST' => [
],
'MAX_REQUESTS' => 10000,
'MAX_SEARCH_PAGE' => 10,
'PUBLIC_URL' => '<%= @public_url %>',
'REPLICATION_AUTH' => '<%= @replication_auth %>',
'REPLICATION_HOSTS' => [
],
'SPAM_BLACKLIST' => [
],
'TWITTER' => [
'CONSUMER_KEY' => '',
'CONSUMER_SECRET' => '',
'ACCESS_TOKEN' => '',
'ACCESS_TOKEN_SECRET' => '',
],
];