Mention 'postgres' db
authorchriskl <chriskl>
Fri, 18 Nov 2005 01:45:42 +0000 (01:45 +0000)
committerchriskl <chriskl>
Fri, 18 Nov 2005 01:45:42 +0000 (01:45 +0000)
conf/config.inc.php-dist

index 050f6039a4158aca809dcb10579a52fca180f4eb..ffd5ffba271e3fe3667b23f2ff37624e521ab0ea 100644 (file)
@@ -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,
 
        // 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';