Resource icon

Unmaintained XF2 Docker Container 1.0.0

No permission to download
What should I use for my config.php?

Most of the config.php can stay as the default, the values that need to be set are the DB details:

PHP:
$config['db'] = [
    'host' => 'xf2-database',
    'port' => '3306',
    'username' => 'homestead',
    'password' => 'secret',
    'dbname' => 'homestead',
];
Top Bottom