dev: mariadb users *

other things also
This commit is contained in:
mcolonna 2025-06-20 12:33:59 +02:00
parent 39f90db91d
commit a1d2d83f60
11 changed files with 79 additions and 28 deletions

View file

@ -23,10 +23,10 @@
define( 'DB_NAME', 'wp' );
/** Database username */
define( 'DB_USER', 'www' );
define( 'DB_USER', 'db' ); # TODO
/** Database password */
define( 'DB_PASSWORD', `cat /run/secrets/database-pwd` );
define( 'DB_PASSWORD', `cat /run/secrets/database-pwd` ); # TODO
/** Database hostname */
define( 'DB_HOST', 'mariadb:3306' );
@ -85,7 +85,7 @@ $table_prefix = 'wp_';
*
* @link https://developer.wordpress.org/advanced-administration/debug/debug-wordpress/
*/
define( 'WP_DEBUG', false );
define( 'WP_DEBUG', true ); # TODO
/* Add any custom values between this line and the "stop editing" line. */