From 565d838133080c5902a202e6a5e017e837654575 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Maurice=20Preu=C3=9F?= Date: Sat, 21 Mar 2026 13:16:06 +0000 Subject: [PATCH] =?UTF-8?q?froxlor/froxlor-nightly-speedrun.md=20hinzugef?= =?UTF-8?q?=C3=BCgt?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- froxlor/froxlor-nightly-speedrun.md | 46 +++++++++++++++++++++++++++++ 1 file changed, 46 insertions(+) create mode 100644 froxlor/froxlor-nightly-speedrun.md diff --git a/froxlor/froxlor-nightly-speedrun.md b/froxlor/froxlor-nightly-speedrun.md new file mode 100644 index 0000000..59936f1 --- /dev/null +++ b/froxlor/froxlor-nightly-speedrun.md @@ -0,0 +1,46 @@ +# froxlor Nightly + +## 0. Prerequisites + +```bash +# install packages +apt-get install -y git apache2 libapache2-mod-php php php-xml php-mbstring php-curl php-gmp php-bcmath php-zip unzip php-mysql mariadb-server +``` + +## 1. Download and extract the tarball + +```bash +# change directory +cd /var/www/html/ + +# download latest froxlor version +wget https://autoupdate.froxlor.org/froxlor-nightly.b78b3b0.zip -O froxlor-nightly.zip + +# the content should go in to the folder /var/www/html/froxlor +# note: the archive contains the folder 'froxlor' already! +unzip froxlor-nightly.zip -d froxlor + +# remove archive +rm froxlor-nightly.zip +``` + +## 2. Set Permissions + +```bash +chown -R www-data:www-data /var/www/html/froxlor/ +``` + +## 3. Create privileged database user + +```bash +mysql -u root +``` + +``` +CREATE USER 'froxroot'@'localhost' IDENTIFIED BY 'CHANGEM3'; +GRANT ALL PRIVILEGES ON *.* TO 'froxroot'@'localhost' WITH GRANT OPTION; +FLUSH PRIVILEGES; +EXIT; +``` + +## 4. Installation via Web-Installer \ No newline at end of file