database.inc.php.tmpl 292 B

123456789
  1. <?
  2. // this file tells all the OGS services where to find the MySQL database
  3. // if multiple OGS services are running on one machine, it is assumed that they all use the same MySQL server/database
  4. $dbhost="YOURSERVERHERE";
  5. $dbuser="opengridservice";
  6. $dbname="OGS";
  7. $dbpasswd="supersecret";
  8. ?>