🌐Database

Configuration for your database

Config

You will find this part in the default.toml file under the phoenixc2/server/data/configs directory:

[database]
type = "sqlite"
sqlite_name = "default"
user = "phoenix"
pass = "YourS3cuReP4ss"
host = "localhost"
port = 3306
database = "PhoenixFramework"

This is the part of the configs which specifies your database.

Configuring the database

SQLite ist the default option.

There is only one configuration:

sqlite_name which represents the name of the .sqlite3 file

Last updated