Skip to content

Commit

Permalink
Improve documentation about Mysql connection
Browse files Browse the repository at this point in the history
  • Loading branch information
fguillot committed Nov 9, 2017
1 parent 877c61d commit 95b2a36
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions doc/en_US/mysql-configuration.markdown
Original file line number Diff line number Diff line change
Expand Up @@ -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
-----------------

Expand Down

0 comments on commit 95b2a36

Please sign in to comment.