summaryrefslogtreecommitdiff
path: root/doc
diff options
context:
space:
mode:
authorFrédéric Guillot <fred@kanboard.net>2017-01-27 11:54:22 -0500
committerGitHub <noreply@github.com>2017-01-27 11:54:22 -0500
commitc6df445ce575e97ab164d78ccd8b8a56c847b025 (patch)
tree2cec5f4cfb8b1df522547072a3ba91275cb22971 /doc
parentbf657abd971be494c40f3a480fef83b679d8ec6c (diff)
parentfd4e36e2899a7a4a79dd5dcdaab1a9925a5480c4 (diff)
Merge pull request #2981
corrected spelling of MySQL
Diffstat (limited to 'doc')
-rw-r--r--doc/mysql-configuration.markdown24
1 files changed, 12 insertions, 12 deletions
diff --git a/doc/mysql-configuration.markdown b/doc/mysql-configuration.markdown
index 9d60271c..c199353e 100644
--- a/doc/mysql-configuration.markdown
+++ b/doc/mysql-configuration.markdown
@@ -1,23 +1,23 @@
-Mysql/MariaDB Configuration
+MySQL/MariaDB Configuration
===========================
By default Kanboard use Sqlite to stores its data.
-However it's possible to use Mysql or MariaDB instead of Sqlite.
+However it's possible to use MySQL or MariaDB instead of Sqlite.
Requirements
------------
-- Mysql server
+- MySQL server
- The PHP extension `pdo_mysql` installed
-Note: Kanboard is tested with **Mysql >= 5.5 and MariaDB >= 10.0**
+Note: Kanboard is tested with **MySQL >= 5.5 and MariaDB >= 10.0**
-Mysql configuration
+MySQL configuration
-------------------
### Create a database
-The first step is to create a database on your Mysql server.
+The first step is to create a database on your MySQL server.
By example, you can do that with the command line mysql client:
```sql
@@ -31,10 +31,10 @@ The file `config.php` should contains those values:
```php
<?php
-// We choose to use Mysql instead of Sqlite
+// We choose to use MySQL instead of Sqlite
define('DB_DRIVER', 'mysql');
-// Mysql parameters
+// MySQL parameters
define('DB_USERNAME', 'REPLACE_ME');
define('DB_PASSWORD', 'REPLACE_ME');
define('DB_HOSTNAME', 'REPLACE_ME');
@@ -58,15 +58,15 @@ The file `app/Schema/Sql/mysql.sql` is a SQL dump that represents the last versi
SSL configuration
-----------------
-These parameters have to be defined to enable the Mysql SSL connection:
+These parameters have to be defined to enable the MySQL SSL connection:
```php
-// Mysql SSL key
+// MySQL SSL key
define('DB_SSL_KEY', '/path/to/client-key.pem');
-// Mysql SSL certificate
+// MySQL SSL certificate
define('DB_SSL_CERT', '/path/to/client-cert.pem');
-// Mysql SSL CA
+// MySQL SSL CA
define('DB_SSL_CA', '/path/to/ca-cert.pem');
```