23 lines
921 B
Bash
Executable File
23 lines
921 B
Bash
Executable File
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 {} \;
|