|
@@ -95,6 +95,7 @@ class Release extends Command
|
|
|
$this->_mysql_user = "iksop";
|
|
|
$this->_mysql_pass = "235r2342gtfsw";
|
|
|
$this->_mysql_root_pass = "235r2342gtfsw";
|
|
|
+ $this->_mysql_max_connections = 10000;
|
|
|
$this->_docker_restart_default = "on-failure:10";
|
|
|
$this->_user_system = ['users' =>
|
|
|
[
|
|
@@ -635,7 +636,9 @@ class Release extends Command
|
|
|
array(
|
|
|
"MYSQL_ROOT_PASSWORD" => $this->_mysql_root_pass,
|
|
|
"MYSQL_USER" => $this->_mysql_user,
|
|
|
- "MYSQL_PASSWORD" => $this->_mysql_pass));
|
|
|
+ "MYSQL_PASSWORD" => $this->_mysql_pass,
|
|
|
+ "MYSQL_MAX_CONNECTIONS" => $this->_mysql_max_connections,
|
|
|
+ ));
|
|
|
}
|
|
|
|
|
|
function addRedis(FileFormat2 $composer, $config = array(), $flavor = "dev")
|