From 4f1b75132f536b508dd03b0e62ef3114cbfce6b2 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Maurice=20Preu=C3=9F?= Date: Sat, 21 Mar 2026 13:16:28 +0000 Subject: [PATCH] =?UTF-8?q?froxlor/froxlor-nightly.md=20hinzugef=C3=BCgt?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- froxlor/froxlor-nightly.md | 46 ++++++++++++++++++++++++++++++++++++++ 1 file changed, 46 insertions(+) create mode 100644 froxlor/froxlor-nightly.md diff --git a/froxlor/froxlor-nightly.md b/froxlor/froxlor-nightly.md new file mode 100644 index 0000000..f4bb9bc --- /dev/null +++ b/froxlor/froxlor-nightly.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..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 [webserver-user]:[webserver-user] /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