Improve documentation about Mysql connection
This commit is contained in:
parent
877c61d279
commit
95b2a36886
|
|
@ -55,6 +55,12 @@ mysql -u root -p my_database < app/Schema/Sql/mysql.sql
|
|||
|
||||
The file `app/Schema/Sql/mysql.sql` is a SQL dump that represents the last version of the database.
|
||||
|
||||
If you would like to use Unix socket connection, try this:
|
||||
|
||||
```php
|
||||
define('DB_HOSTNAME', '127.0.0.1;unix_socket=/var/run/mysqld/mysqld.sock');
|
||||
```
|
||||
|
||||
SSL configuration
|
||||
-----------------
|
||||
|
||||
|
|
|
|||
Loading…
Reference in New Issue