mirror of
git://opensimulator.org/git/opensim
synced 2026-08-14 17:12:17 +00:00
10 lines
292 B
Cheetah
10 lines
292 B
Cheetah
<?
|
|
// this file tells all the OGS services where to find the MySQL database
|
|
// if multiple OGS services are running on one machine, it is assumed that they all use the same MySQL server/database
|
|
|
|
$dbhost="YOURSERVERHERE";
|
|
$dbuser="opengridservice";
|
|
$dbname="OGS";
|
|
$dbpasswd="supersecret";
|
|
?>
|