diff options
author | gareth | 2007-02-27 23:31:14 +0000 |
---|---|---|
committer | gareth | 2007-02-27 23:31:14 +0000 |
commit | ed4dc30dc2b00628a3d6c298b6b2d6ec7f74ab56 (patch) | |
tree | c96e74cc05e4c6d6e97716c0c509fb0ec1693fc6 /ogs/common/database.inc.php.tmpl | |
parent | Brought in code from branches/gareth (diff) | |
download | opensim-SC_OLD-ed4dc30dc2b00628a3d6c298b6b2d6ec7f74ab56.zip opensim-SC_OLD-ed4dc30dc2b00628a3d6c298b6b2d6ec7f74ab56.tar.gz opensim-SC_OLD-ed4dc30dc2b00628a3d6c298b6b2d6ec7f74ab56.tar.bz2 opensim-SC_OLD-ed4dc30dc2b00628a3d6c298b6b2d6ec7f74ab56.tar.xz |
Brought in other OGS server components and the all-important caffeine script
Diffstat (limited to 'ogs/common/database.inc.php.tmpl')
-rw-r--r-- | ogs/common/database.inc.php.tmpl | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/ogs/common/database.inc.php.tmpl b/ogs/common/database.inc.php.tmpl new file mode 100644 index 0000000..42ac5ca --- /dev/null +++ b/ogs/common/database.inc.php.tmpl | |||
@@ -0,0 +1,9 @@ | |||
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 | |||
5 | $dbhost="YOURSERVERHERE"; | ||
6 | $dbuser="opengridservice"; | ||
7 | $dbname="OGS"; | ||
8 | $dbpasswd="supersecret"; | ||
9 | ?> | ||