mirror of
https://github.com/YunoHost-Apps/lxd-dashboard_ynh.git
synced 2024-09-03 19:36:18 +02:00
8 lines
184 B
PHP
8 lines
184 B
PHP
|
<?php
|
||
|
define( 'DB_TYPE', 'mysql' );
|
||
|
define( 'DB_NAME', '__DB_NAME__' );
|
||
|
define( 'DB_USER', '__DB_USER__' );
|
||
|
define( 'DB_PASSWORD', '__DB_PWD__' );
|
||
|
define( 'DB_HOST', 'localhost' );
|
||
|
?>
|