sudo apt install apt-transport-https gnupg
apt-get -y install apt-transport-https lsb-release ca-certificates
wget -O - https://deb.froxlor.org/froxlor.gpg | apt-key add -
echo "deb https://deb.froxlor.org/debian $(lsb_release -sc) main" > /etc/apt/sources.list.d/froxlor.list
apt-get update && apt-get upgrade
apt-get install froxlor
sudo apt-get install php7.2-xml php7.2-posix php7.2-mbstring php7.2-curl php7.2-bcmath php7.2-zip php7.2-json
After, login to MySQL and secure by setting password for root user:
mysql -u root -p
ALTER USER ‘root’@’localhost’ IDENTIFIED WITH mysql_native_password BY ‘PASSWORD!’;
And now create database for Froxlor:
create database froxlor;
create user ‘froxlor’@’localhost’ IDENTIFIED BY ‘password’;
GRANT ALL PRIVILEGES ON froxlor.* TO ‘froxlor’@’localhost’ IDENTIFIED BY ‘password’ WITH GRANT OPTION;
flush privileges;
exit;
Next, run Apache and MySQL:
/etc/init.d/apache2 start
/etc/init.d/mysql start
Jak na SSL
1. poklikat všechno 3x
2. dát tomu čas
vytvořit:
/etc/apache2/conf-enabled# nano acme.conf
Vložit:
Alias "/.well-known/acme-challenge" "/var/www/froxlor/.well-known/acme-challenge"
<Directory "/var/www/froxlor/.well-known/acme-challenge">
Require all granted
</Directory>
php /var/www/froxlor/scripts/froxlor_master_cronjob.php --force --debug