updated user manual wiki page link for future 4.1.2
[openemr.git] / Documentation / privileged_db / secure_sqlconf.php
blob3ae542747922830f3045ce96511960256e34e822
2 <?php
3 /**
4 * This is an example secure_sqlconf.php provided for reference.
5 * After configuring the MySQL user 'secure' with password 'securepassword'
6 * as described in the HOWTO guide putting this file in "sites/<sitename>
7 * will make OpenEMR use these credentials when accessing password related tables
8 */
10 $secure_host = 'localhost';
11 $secure_port = '3306';
12 $secure_login = 'secure';
13 $secure_pass = 'securepassword';
14 $secure_dbase = 'openemr';