From 5afd237bbd22028b85532b8c0b3fcead49a00764 Mon Sep 17 00:00:00 2001 From: Charles Date: Thu, 9 Jan 2020 18:38:59 +0100 Subject: SSL and cleaner Dockerfile with setup scripts --- srcs/wordpress/wp-config.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'srcs/wordpress/wp-config.php') diff --git a/srcs/wordpress/wp-config.php b/srcs/wordpress/wp-config.php index d15cf83..2c45c2d 100644 --- a/srcs/wordpress/wp-config.php +++ b/srcs/wordpress/wp-config.php @@ -20,13 +20,13 @@ // ** MySQL settings - You can get this info from your web host ** // /** The name of the database for WordPress */ -define( 'DB_NAME', 'testdb' ); +define( 'DB_NAME', 'wordpressdb' ); /** MySQL database username */ define( 'DB_USER', 'wordpressuser' ); /** MySQL database password */ -define( 'DB_PASSWORD', 'password' ); +define( 'DB_PASSWORD', 'wordpresspass' ); /** MySQL hostname */ define( 'DB_HOST', 'localhost' ); -- cgit