71a4ad4a65
We have a new ID generator. This should make it hard to guess other user's IDs. This is configurable.
13 lines
No EOL
350 B
YAML
13 lines
No EOL
350 B
YAML
Server:
|
|
host: 127.0.0.1
|
|
port: 8000
|
|
CouchDB:
|
|
username: root
|
|
password: root
|
|
url: http://localhost:5984
|
|
Shortener:
|
|
# *CAUTION*: Enabling this check if the ID already exists before returning it.
|
|
# Even though this guarantees that the ID doesn't exist, this might inflict
|
|
# some performance hit.
|
|
check_duplicate_id: False
|
|
id_length: 32 |