53 lines
954 B
Markdown
53 lines
954 B
Markdown
# Configuration File
|
|
|
|
## App/config.php
|
|
|
|
The configuration file holds a php multi dimentional array for configuration.
|
|
|
|
#### database
|
|
|
|
This is the connection setting for mariadb.
|
|
|
|
```
|
|
'database' => [
|
|
'host' => 'ny-db',
|
|
'name' => 'nydb',
|
|
'user' => 'nydbu',
|
|
'pass' => 'as7!d5fLKJ2DLKJS5',
|
|
'port' => 3306
|
|
],
|
|
```
|
|
|
|
#### base_url
|
|
|
|
Defines the url to use
|
|
```
|
|
'base_url' => 'https://www.nickyeoman.com',
|
|
```
|
|
|
|
#### secure_key
|
|
|
|
The security key is used to verify admin account and salt encrpytion functions.
|
|
You can generate a key with ```pwgen -cnsB1v 64```
|
|
but if you don't set one, novaconium will generate one for you to use (you have to explicily set it though).
|
|
|
|
```
|
|
'secure_key' => '',
|
|
```
|
|
|
|
#### logfile
|
|
|
|
sets the path of the log file.
|
|
|
|
```
|
|
'logfile' => '/logs/novaconium.log',
|
|
```
|
|
|
|
#### loglevel
|
|
|
|
Sets the logging level for the app.
|
|
|
|
```
|
|
'loglevel' => 'ERROR' // 'DEBUG', 'INFO', 'WARNING', 'ERROR', 'NONE'
|
|
```
|