mirror of
https://github.com/CachetHQ/Cachet.git
synced 2025-01-16 21:18:19 +01:00
add UNIX socket support for MySQL
This commit is contained in:
parent
3425f3a84a
commit
080b7a4d7d
@ -5,6 +5,7 @@ APP_KEY=
|
||||
|
||||
DB_DRIVER=mysql
|
||||
DB_HOST=localhost
|
||||
DB_UNIX_SOCKET=null
|
||||
DB_DATABASE=cachet
|
||||
DB_USERNAME=homestead
|
||||
DB_PASSWORD=secret
|
||||
|
@ -64,6 +64,7 @@ return [
|
||||
'mysql' => [
|
||||
'driver' => 'mysql',
|
||||
'host' => env('DB_HOST', null),
|
||||
'unix_socket' => env('DB_UNIX_SOCKET', null),
|
||||
'database' => env('DB_DATABASE', null),
|
||||
'username' => env('DB_USERNAME', null),
|
||||
'password' => env('DB_PASSWORD', null),
|
||||
|
Loading…
x
Reference in New Issue
Block a user