How to set up WordPress with Forge when using an AWS RDS database?
Hi,
Has anyone installed WordPress on a Laravel Forge managed server when using a remote RDS database instead of a local database? I don't see any way to do this.
I ended up with a similar solution. Here's my script:
wget https://wordpress.org/latest.tar.gz; # grab the latest WordPress
tar -xzvf latest.tar.gz; # explode!
mv -v ./wordpress/* ./ # Move the contents out of the "wordpress" folder and into the root of the site.
cp wp-config-sample.php wp-config.php; # set up the confg file.
rm latest.tar.gz; # Start some cleanup.
rm wp-config-sample.php;
rm -R wordpress;