How to Install WordPress in PHP/Nginx in AWS

Published: 12 May 2019
on channel: AWS With Atiq
1,341
20

https://awswithatiq.com/install-wordp...
SetUp Script


sudo yum update -y
sudo yum install -y nginx php72 php72-mysqlnd php72-mbstring mysql57-server
sudo yum install -y php72-mcrypt php72-zip php72-intl php72-gd php72-fpm
sudo service nginx start
sudo service mysqld start
sudo service php-fpm restart
sudo chkconfig nginx on
sudo chkconfig php-fpm on
sudo groupadd www
sudo usermod -a -G www ec2-user
sudo usermod -a -G www apache
find /var/www -type d -exec sudo chmod 2775 {} +
find /var/www -type f -exec sudo chmod 0664 {} +
cd ~
wget https://dl.eff.org/certbot-auto
chmod a+x certbot-auto
cd /var/www
wget https://wordpress.org/wordpress-5.2.zip
unzip wordpress-5.2.zip
sudo mv wordpress/ html/
sudo chown -R apache:www /var/www
sudo chmod 2775 /var/www

More details can be found here https://awswithatiq.com/install-wordp...


Watch video How to Install WordPress in PHP/Nginx in AWS online without registration, duration hours minute second in high quality. This video was added by user AWS With Atiq 12 May 2019, don't forget to share it with your friends and acquaintances, it has been viewed on our site 1,341 once and liked it 20 people.