From b8711daa5dd4326e2beafedae35174f1ccbad693 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E2=80=9CCl=C3=A9ment?= Date: Thu, 11 May 2023 15:58:23 +0200 Subject: [PATCH] InstDoku --- scripts/inst-doku.sh | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) create mode 100755 scripts/inst-doku.sh diff --git a/scripts/inst-doku.sh b/scripts/inst-doku.sh new file mode 100755 index 0000000..cf795b9 --- /dev/null +++ b/scripts/inst-doku.sh @@ -0,0 +1,17 @@ +#!/bin/bash + +wget http://depl.sio.lan/store/dokuwiki-stable.tgz +tar xvfz dokuwiki-stable.tgz +mkdir /var/www/html/doku +cp -a dokuwiki-2023-04-04/* /var/www/html/doku +cd /var/www/html +chown -R root:root . +cd doku +chown -R www-data:www-data data lib conf +export http_proxy=http://10.121.38.1:8080 +apt update +apt install -y apache2 php php-gd php-xml +systemctl restart apache2 + + +echo "Installation de dokuwiki terminee. Connectez-vous avec un navigateur à l'adresse http://adresse/doku"