Use HTML entity for less-than symbol (sasl README.md)
This commit is contained in:
parent
35ad1c7c7b
commit
7d25ce44ad
1 changed files with 7 additions and 7 deletions
|
@ -7,13 +7,13 @@ You can either configure SASL through `!serverset sasl` from an registered and i
|
||||||
These commands are to be executed from a registered admin account
|
These commands are to be executed from a registered admin account
|
||||||
|
|
||||||
#### PLAIN
|
#### PLAIN
|
||||||
> !serverset sasl plain <username>:<password>
|
> !serverset sasl plain <username>:<password>
|
||||||
|
|
||||||
#### SCRAM-SHA-1
|
#### SCRAM-SHA-1
|
||||||
> !serverset sasl scram-sha-1 <username>:<password>
|
> !serverset sasl scram-sha-1 <username>:<password>
|
||||||
|
|
||||||
#### SCRAM-SHA-256
|
#### SCRAM-SHA-256
|
||||||
> !serverset sasl scram-sha-256 <username>:<password>
|
> !serverset sasl scram-sha-256 <username>:<password>
|
||||||
|
|
||||||
#### EXTERNAL
|
#### EXTERNAL
|
||||||
> !serverset sasl external
|
> !serverset sasl external
|
||||||
|
@ -23,13 +23,13 @@ These commands are to be executed from a registered admin account
|
||||||
Execute these against the current bot database file (e.g. `$ sqlite3 databases/bot.db`)
|
Execute these against the current bot database file (e.g. `$ sqlite3 databases/bot.db`)
|
||||||
|
|
||||||
#### PLAIN
|
#### PLAIN
|
||||||
> INSERT INTO server_settings (<serverid>, 'sasl', '{"mechanism": "plain", "args": "<username>:<password>"}');
|
> INSERT INTO server_settings (<serverid>, 'sasl', '{"mechanism": "plain", "args": "<username>:<password>"}');
|
||||||
|
|
||||||
#### SCRAM-SHA-1
|
#### SCRAM-SHA-1
|
||||||
> INSERT INTO server_settings (<serverid>, 'sasl', '{"mechanism": "scram-sha-1", "args": "<username>:<password>"}');
|
> INSERT INTO server_settings (<serverid>, 'sasl', '{"mechanism": "scram-sha-1", "args": "<username>:<password>"}');
|
||||||
|
|
||||||
#### SCRAM-SHA-256
|
#### SCRAM-SHA-256
|
||||||
> INSERT INTO server_settings (<serverid>, 'sasl', '{"mechanism": "scram-sha-256", "args": "<username>:<password>"}');
|
> INSERT INTO server_settings (<serverid>, 'sasl', '{"mechanism": "scram-sha-256", "args": "<username>:<password>"}');
|
||||||
|
|
||||||
#### external
|
#### external
|
||||||
> INSERT INTO server_settings (<serverid>, 'sasl', '{"mechanism": "external"}');
|
> INSERT INTO server_settings (<serverid>, 'sasl', '{"mechanism": "external"}');
|
||||||
|
|
Loading…
Reference in a new issue