xref: /dokuwiki/_test/pgsql.conf.php.dist (revision 20cfa168a7a13d9704bdb6340b791e1d5a8553aa)
1<?php
2/**
3 * This configures the access to a postgres database. The user needs to have permissions
4 * to create and drop databases.
5 */
6$conf['host'] = 'localhost';
7$conf['port'] = 5432;
8$conf['user'] = 'postgres';
9$conf['pass'] = '';
10