[Date Prev][Date Next] [Thread Prev][Thread Next] [Date Index] [Thread Index]

Installation de dokuwiki sur une Jessie



salut la lise,

Je sèche. J'essaie d'installer un dokuwiki sur ma Jessie.
Et je sèche.

Pourtant, ça a l'air simple.
1/ apt-get install php5-fpm dokuwiki (nginx est déjà installé);
2/ dpkg-reconfigure dokuwiki
3/ modif de la config nginx comme décrit sur dokuwiki.org [1];

Et rien. Quand j'essaie d'accéder au wiki http://cubieboard.localdomain/dokuwiki/, j'ai juste une page blanche.

Et le fichier acess.log de nginx m'indique que tout va bien [2].

Quelqu'un a déjà fait ce genre d'install' ?

Jean-Marc <jean-marc@6jf.be>

===== [1] https://www.dokuwiki.org/install:debian
Insert in /etc/nginx/sites-enabled/default

    # serve static files from nginx
    location ~ ^/dokuwiki/lib/.+\.(css|gif|js|png)$ {
        root /usr/share;
        expires 30d;
    }
    location = /dokuwiki/install.php {
        deny all;
    }
    location = /dokuwiki {
        rewrite ^ /dokuwiki/ permanent;
    }
    location = /dokuwiki/ {
        rewrite ^ /dokuwiki/doku.php last;
        expires 30d;
    }
    location ~ ^/dokuwiki/(|lib/(exe|plugins/[^/]+)/)[^/]+\.php {
        root /usr/share;
        fastcgi_pass unix:/var/run/php5-fpm.sock;
        include        fastcgi_params;
    }
    location /dokuwiki/ {
        deny all;
    }



===== [2] access.log
192.168.1.8 - - [11/Feb/2016:21:14:31 +0100] "GET /dokuwiki/ HTTP/1.1" 200 31 "-" "Mozilla/5.0 (X11; Linux x86_64; rv:44.0) Gecko/20100101 Firefox/44.0 Iceweasel/44.0"
192.168.1.8 - - [11/Feb/2016:21:14:32 +0100] "GET /dokuwiki/ HTTP/1.1" 200 31 "-" "Mozilla/5.0 (X11; Linux x86_64; rv:44.0) Gecko/20100101 Firefox/44.0 Iceweasel/44.0"
192.168.1.8 - - [11/Feb/2016:21:14:33 +0100] "GET /dokuwiki/ HTTP/1.1" 200 31 "-" "Mozilla/5.0 (X11; Linux x86_64; rv:44.0) Gecko/20100101 Firefox/44.0 Iceweasel/44.0"

Attachment: pgpltrXG005B9.pgp
Description: PGP signature


Reply to: