|
#!/bin/sh
|
|
|
|
# Passbolt directory.
|
|
PASSBOLT_DIR=/path/to/passbolt/dir
|
|
|
|
# MySQL configuration.
|
|
MYSQL_HOST=localhost
|
|
# Only necessary if we use the local database.
|
|
MYSQL_ROOT_PASSWORD=rootpassword
|
|
MYSQL_USERNAME=passbolt
|
|
MYSQL_PASSWORD=password123
|
|
MYSQL_DATABASE=passbolt
|
|
|