From ff11e813bd6ca68ac828b2d75c7ef641018b30ac Mon Sep 17 00:00:00 2001 From: chriskl Date: Fri, 18 Nov 2005 01:45:42 +0000 Subject: [PATCH] Mention 'postgres' db --- conf/config.inc.php-dist | 13 +++++++------ 1 file changed, 7 insertions(+), 6 deletions(-) diff --git a/conf/config.inc.php-dist b/conf/config.inc.php-dist index 050f6039..ffd5ffba 100644 --- a/conf/config.inc.php-dist +++ b/conf/config.inc.php-dist @@ -4,7 +4,7 @@ * Central phpPgAdmin configuration. As a user you may modify the * settings here for your particular configuration. * - * $Id: config.inc.php-dist,v 1.44 2005/09/07 08:09:21 chriskl Exp $ + * $Id: config.inc.php-dist,v 1.45 2005/11/18 01:45:42 chriskl Exp $ */ // An example server. Create as many of these as you wish, @@ -15,18 +15,19 @@ // Hostname or IP address for server. Use '' for UNIX domain socket. // use 'localhost' for TCP/IP connection on this computer - $conf['servers'][0]['host'] = ''; + $conf['servers'][0]['host'] = 'database'; // Database port on server (5432 is the PostgreSQL default) $conf['servers'][0]['port'] = 5432; - // Change the default database only if you cannot connect to template1 + // Change the default database only if you cannot connect to template1. + // For a PostgreSQL 8.1 server, you need to set this to 'postgres'. $conf['servers'][0]['defaultdb'] = 'template1'; // Specify the path to the database dump utilities for this server. // You can set these to '' if no dumper is available. - $conf['servers'][0]['pg_dump_path'] = '/usr/bin/pg_dump'; - $conf['servers'][0]['pg_dumpall_path'] = '/usr/bin/pg_dumpall'; + $conf['servers'][0]['pg_dump_path'] = '/usr/local/bin/pg_dump'; + $conf['servers'][0]['pg_dumpall_path'] = '/usr/local/bin/pg_dumpall'; // Slony (www.slony.info) support? $conf['servers'][0]['slony_support'] = false; @@ -87,7 +88,7 @@ $conf['min_password_length'] = 1; // Width of the left frame in pixels (object browser) - $conf['left_width'] = 200; + $conf['left_width'] = 300; // Which look & feel theme to use $conf['theme'] = 'default'; -- 2.39.5