From 7bdf92ee3f85470feaf95c7e3690d6b93d7ea865 Mon Sep 17 00:00:00 2001 From: Louis Depres Date: Thu, 12 May 2022 08:36:23 +0200 Subject: [PATCH] Push Installation WordPress --- Sio1/AP22/installationword.sh | 22 ++++++++++++++++++++++ 1 file changed, 22 insertions(+) create mode 100755 Sio1/AP22/installationword.sh diff --git a/Sio1/AP22/installationword.sh b/Sio1/AP22/installationword.sh new file mode 100755 index 0000000..2f43379 --- /dev/null +++ b/Sio1/AP22/installationword.sh @@ -0,0 +1,22 @@ +apt update +apt install -y mariadb-server +apt install -y apache2 php php-mysql php-gd php-ldap php-mbstring php-curl php-xml php-imap php-apcu php-cas +sudo systemctl restart apache2 +sudo nano /etc/apache2/sites-available/wordpress.conf +sudo a2enmod rewrite +sudo apache2ctl configtest +sudo systemctl restart apache2 +cd /tmp +wget -O https://fr.wordpress.org/latest-fr_FR.tar.gz +tar xzvf latest-fr_FR.tar.gz +touch /tmp/wordpress/.htaccess +cp /tmp/wordpress/wp-config-sample.php /tmp/wordpress/wp-config.php +mkdir /tmp/wordpress/wp-content/upgrade +sudo cp -a /tmp/wordpress/. /var/www/wordpress +sudo chown -R www-data:www-data /var/www/wordpress +wget https://api.wordpress.org/secret-key/1.1/salt/ +sudo nano /var/www/wordpress/wp-config.php +cd /var/www/wordpress/ +cp -r wordpress/ /var/www/html/ +sudo find /var/www/html/wordpress/ -type d -exec chmod 750 {} \; +sudo find /var/www/html/wordpress/ -type f -exec chmod 640 {} \;