Skip to content
GitLab
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Register
Sign in
Toggle navigation
Menu
Open sidebar
Guilherme Filippo
ISPConfig 3
Commits
a78dfc66
Commit
a78dfc66
authored
Dec 06, 2008
by
tbrehm
Browse files
Added config values for master DB to config.inc.php template.
parent
01423fd5
Changes
1
Hide whitespace changes
Inline
Side-by-side
install/tpl/config.inc.php.master
View file @
a78dfc66
...
...
@@ -63,6 +63,14 @@ define("DB_PASSWORD",$conf["db_password"]);
define
(
"DB_CHARSET"
,
$conf
[
"db_charset"
]);
//** Database settings for the master DB. This setting is only used in multiserver setups
$conf
[
"dbmaster_type"
]
=
'mysql'
;
$conf
[
"dbmaster_host"
]
=
'{mysql_master_server_host}'
;
$conf
[
"dbmaster_database"
]
=
'{mysql_master_server_database}'
;
$conf
[
"dbmaster_user"
]
=
'{mysql_master_server_ispconfig_user}'
;
$conf
[
"dbmaster_password"
]
=
'{mysql_master_server_ispconfig_password}'
;
//** Paths
define
(
'ISPC_ROOT_PATH'
,
realpath
(
dirname
(
__FILE__
)
.
'/../'
));
// The main ROOT is the parent directory to this file, ie Interface/. NO trailing slashes.
define
(
'ISPC_LIB_PATH'
,
ISPC_ROOT_PATH
.
'/lib'
);
...
...
@@ -129,4 +137,4 @@ define("LOGLEVEL_DEBUG",0);
define
(
"LOGLEVEL_WARN"
,
1
);
define
(
"LOGLEVEL_ERROR"
,
2
);
?>
\ No newline at end of file
?>
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment