28 lines
823 B
PHP
28 lines
823 B
PHP
<?php
|
|
/**
|
|
* C-Relay-PG Admin — Database connection configuration.
|
|
*
|
|
* This file is NOT web-accessible (denied by nginx location block).
|
|
* It contains the PostgreSQL connection string used by all admin pages.
|
|
*
|
|
* Edit these values to match your relay's PostgreSQL credentials.
|
|
*/
|
|
|
|
// PostgreSQL connection parameters.
|
|
// These should match the --db-* flags passed to the c-relay-pg binary
|
|
// or the connection string passed to caching_relay -p "...".
|
|
return [
|
|
'db_host' => 'localhost',
|
|
'db_port' => '5432',
|
|
'db_name' => 'crelay',
|
|
'db_user' => 'crelay',
|
|
'db_password' => 'crelay',
|
|
|
|
// Page sizes for paginated tables.
|
|
'follows_per_page' => 50,
|
|
'relays_per_page' => 50,
|
|
|
|
// Auto-refresh interval for dashboard polling (milliseconds).
|
|
'refresh_ms' => 10000,
|
|
];
|