DokuWiki: Difference between revisions

From Alpine Linux
No edit summary
(Your PHP seems to miss SSL support. Downloading will not work for many DokuWiki extensions.)
 
(2 intermediate revisions by the same user not shown)
Line 35: Line 35:
Install required php modules
Install required php modules


{{Cmd|# apk add {{pkg|php82-session}} {{pkg|php82-xml}} }}
{{Cmd|# apk add {{pkg|php-session}} {{pkg|php-xml}} {{pkg|php-openssl}} }}


Create webroot
Create webroot
Line 67: Line 67:
Browse to  
Browse to  
<nowiki>http://WEB_IP_ADDRESS/dokuwiki/install.php</nowiki>
<nowiki>http://WEB_IP_ADDRESS/dokuwiki/install.php</nowiki>
The installation script will show warning ''"It seems your data directory is not properly secured"''. Please follow the instructions on [https://www.dokuwiki.org/security#deny_directory_access_in_lighttpd DokuWiki security].


[[Category:Server]]
[[Category:Server]]
[[Category:PHP]]
[[Category:PHP]]

Latest revision as of 19:51, 18 November 2025

DokuWiki is a standards compliant, simple to use Wiki, mainly aimed at creating documentation of any kind. This page covers installation with either lighttpd or nginx.

Install lighttpd and PHP

Basic Installation

For installing the additional packages first activate community packages and update the package index

Install the required packages:

# apk add lighttpd php fcgi php-cgi

Configure Lighttpd

Edit lighttpd.conf (/etc/lighttpd/lighttpd.conf) and uncomment the line:

Contents of /etc/lighttpd/lighttpd.conf

... include "mod_fastcgi.conf" ...

Start lighttpd service and add it to default runlevel

# rc-service lighttpd start # rc-update add lighttpd default

Install nginx and PHP

Continue with this tutorial, however please note that only these packages are required:

apk add nginx php7 php7-gd php7-fpm php7-xml php7-session php7-json

Make sure that the PHP user and group match those for nginx (the outputs should be the same):

grep listen.owner /etc/php7/php-fpm.d/www.conf grep listen.group /etc/php7/php-fpm.d/www.conf grep user /etc/php7/php-fpm.d/www.conf grep group /etc/php7/php-fpm.d/www.conf grep user /etc/nginx/nginx.conf

Afterwards, configure nginx and, optionally, enable URL rewrites

Alternatively, you can call PHP from nginx via unix socket:

sed -i "s|listen\s*=\s*127.0.0.1:9000|listen = /var/run/php.sock|g" /etc/php7/php-fpm.d/www.conf

To define unix socket in nginx configuration, add following section to server:

   location ~ \.php$ {
       try_files $uri $uri/ /doku.php;
       include fastcgi_params;
       fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name;
       fastcgi_param REDIRECT_STATUS 200;
       fastcgi_pass unix:/var/run/php.sock;
   }

Installing DokuWiki

Install required php modules

# apk add php-session php-xml php-openssl

Create webroot

mkdir -p /var/www/localhost/htdocs/

Download the source code archive

cd /var/www/localhost/htdocs/ wget https://download.dokuwiki.org/src/dokuwiki/dokuwiki-stable.tgz

Unpack and delete tar file

tar zxvf dokuwiki-stable.tgz rm dokuwiki-stable.tgz

Rename the dokuwiki folder

mv dokuwiki-2018-04-22c dokuwiki

Change the folder permissions (change the www user/group to the one that is used by both web server and PHP)

chown -R www:www dokuwiki chmod -R 700 dokuwiki/

for lighttpd use

chown -R lighttpd:lighttpd dokuwiki chmod -R 700 dokuwiki/

Browse to http://WEB_IP_ADDRESS/dokuwiki/install.php

The installation script will show warning "It seems your data directory is not properly secured". Please follow the instructions on DokuWiki security.