master
mrtuxa 2022-11-24 01:24:47 +01:00
commit 82439abb16
2 changed files with 51 additions and 0 deletions

19
phpmyadmin.conf Normal file
View File

@ -0,0 +1,19 @@
# phpMyAdmin Apache configuration
Alias /phpmyadmin /usr/share/phpmyadmin
<Directory /usr/share/phpmyadmin>
Options SymLinksIfOwnerMatch
DirectoryIndex index.php
</Directory>
# Disallow web access to directories that don't need it
<Directory /usr/share/phpmyadmin/templates>
Require all denied
</Directory>
<Directory /usr/share/phpmyadmin/libraries>
Require all denied
</Directory>
<Directory /usr/share/phpmyadmin/setup/lib>
Require all denied
</Directory>

32
phpmyadmin.sh Normal file
View File

@ -0,0 +1,32 @@
#!/bin/sh
echo "updating the system";
apt update;
echo "upgrading the system";
apt upgrade;
echo "install dependcies";
apt install ca-certificates apt-transport-https lsb-release gnupg curl nano unzip -y;
wget -q https://packages.sury.org/php/apt.gpg -O- | apt-key add -;
echo "deb https://packages.sury.org/php/ $(lsb_release -sc) main" | tee /etc/apt/sources.list.d/php.list;
apt update;
apt install apache2 -y;
apt install php7.4 php7.4-cli php7.4-common php7.4-curl php7.4-gd php7.4-intl php7.4-json php7.4-mbstring php7.4-mysql php7.4-opcache php7.4-readline php7.4-xml php7.4-xsl php7.4-zip php7.4-bz2 libapache2-mod-php7.4 -y;
apt install mariadb-server mariadb-client -y;
mysql_secure_installation;
cd /usr/share;
apt install unzip wget
wget https://www.phpmyadmin.net/downloads/phpMyAdmin-latest-all-languages.zip -O phpmyadmin.zip;
unzip phpmyadmin.zip;
rm phpmyadmin.zip;
mv phpMyAdmin-*-all-languages phpmyadmin;
chmod -R 0755 phpmyadmin;
wget -4 https://raw.githubusercontent.com/2duo/mariadbautomaticinstall/main/phpmyadmin.conf -P /etc/apache2/conf-available;
a2enconf phpmyadmin;
systemctl reload apache2;
mkdir /usr/share/phpmyadmin/tmp/;
chown -R www-data:www-data /usr/share/phpmyadmin/tmp/;
echo "please create a user. thx for using the script <3";
sleep 5
echo "---> Create User mysql -u root";
echo "CREATE USER 'username'@'localhost' IDENTIFIED BY 'password';"
echo "GRANT ALL PRIVILEGES ON *.* TO 'username'@'localhost' WITH GRANT OPTION;"
sleep 5