Browse Source

Merge pull request #1438 from dejangeci/fix/dns-speedup

Changed DB config hosts to IP addresses
Dayle Rees 12 years ago
parent
commit
cac58db390
1 changed files with 3 additions and 3 deletions
  1. 3 3
      application/config/database.php

+ 3 - 3
application/config/database.php

@@ -69,7 +69,7 @@ return array(
 
 		'mysql' => array(
 			'driver'   => 'mysql',
-			'host'     => 'localhost',
+			'host'     => '127.0.0.1',
 			'database' => 'database',
 			'username' => 'root',
 			'password' => '',
@@ -79,7 +79,7 @@ return array(
 
 		'pgsql' => array(
 			'driver'   => 'pgsql',
-			'host'     => 'localhost',
+			'host'     => '127.0.0.1',
 			'database' => 'database',
 			'username' => 'root',
 			'password' => '',
@@ -90,7 +90,7 @@ return array(
 
 		'sqlsrv' => array(
 			'driver'   => 'sqlsrv',
-			'host'     => 'localhost',
+			'host'     => '127.0.0.1',
 			'database' => 'database',
 			'username' => 'root',
 			'password' => '',