mirror of
https://github.com/operasoftware/ssh-key-authority.git
synced 2025-12-30 09:20:19 -06:00
Add missing backticks and bring sample config in line with README
Resolves: #10
This commit is contained in:
@@ -57,8 +57,8 @@ Installation
|
||||
3. Create a MySQL user and database (run in MySQL shell):
|
||||
|
||||
CREATE USER 'ska-user'@'localhost' IDENTIFIED BY 'password';
|
||||
CREATE DATABASE ska-db DEFAULT CHARACTER SET utf8mb4;
|
||||
GRANT ALL ON ska-db.* to 'ska-user';
|
||||
CREATE DATABASE `ska-db` DEFAULT CHARACTER SET utf8mb4;
|
||||
GRANT ALL ON `ska-db`.* to 'ska-user'@'localhost';
|
||||
|
||||
4. Copy the file `config/config-sample.ini` to `config/config.ini` and edit the settings as required.
|
||||
|
||||
|
||||
@@ -71,9 +71,9 @@ admin_name = "SSH Key Authority administrators"
|
||||
; Connection details to the MySQL database
|
||||
hostname = localhost
|
||||
port = 3306
|
||||
username = keys
|
||||
username = ska-user
|
||||
password = password
|
||||
database = keys
|
||||
database = ska-db
|
||||
|
||||
[ldap]
|
||||
; Address to connect to LDAP server
|
||||
|
||||
Reference in New Issue
Block a user