Hi Jota,
I am following the documents and thought I was doing well until I started installing wordpress. I just realized that everywhere it says "myapp" I was supposed to put the app name instead of creating a directory called myapp. It took me a while to figure out why i had to keep creating wordpress directories or files that were supposedly not found. It's a learning curve and i'm having fun with it. I'll go back and delete the "myapp" directory and make sure I have everything named properly.
My next problem is on the wordpress install (https://docs.bitnami.com/aws/how-to/install-wordpress-nginx/) the first steps are:
cd /opt/bitnami
sudo cp -r docs/demo apps/wordpress
sudo rm -rf /opt/bitnami/apps/wordpress/htdocs/
I skipped this part because on approach A there is no docs/demo apps/wordpress
The next steps worked fine although i had to create the files, but I now why now:
cd /tmp
wget https://wordpress.org/latest.tar.gz
sudo tar xfvz latest.tar.gz -C /opt/bitnami/apps/wordpress/
sudo mv /opt/bitnami/apps/wordpress/wordpress/ /opt/bitnami/apps/wordpress/htdocs/
These next steps is where I'm stuck now:
sudo sed -i 's/demo/wordpress/g' /opt/bitnami/apps/wordpress/conf/nginx-prefix.conf
sudo sed -i 's/demo/wordpress/g' /opt/bitnami/apps/wordpress/conf/nginx-vhosts.conf
I'm getting a file not found error but i know why. In the setup i put myapp so i have to fix that but my questions is it's referencing the /demo/wordpress file again which i don't have in approach A.
So my question is how do i get the /demo/worpress file?