commit b8711daa5dd4326e2beafedae35174f1ccbad693 Author: “Clément Date: Thu May 11 15:58:23 2023 +0200 InstDoku 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"