DokuWiki

来自 Arch Linux 中文维基

摘自其网站:

DokuWiki 是一个简单易用、用途多样并且不依赖数据库的开源维基软件。它因简洁易读的语法受到用户的喜爱。而容易维护、备份方便和易于整合则使它成为管理员的最爱。内置的访问控制和认证管理使 DokuWiki 在企业环境下特别适合,而由充满活力的社区贡献的众多插件对其功能的扩充则令它拥有了比传统维基更广阔的应用。

See upstream for the detailed list of features.

DokuWiki should work on any web server which supports PHP. As the requirements may change over time, you should consult the requirements page for DokuWiki for additional details.

It is strongly recommend to read through the appropriate sections of DokuWiki's security page for your web server. Most popular web servers are covered but there are generic instructions as well.

Installation[编辑 | 编辑源代码]

The package in the official repositories unpacks DokuWiki at /usr/share/webapps/dokuwiki with the configuration files in /etc/webapps/dokuwiki and the data files in /var/lib/dokuwiki/data. It also changes the ownership of the relevant files to the "http" user. This should work fine for most popular web servers as packaged for Arch.

  1. Install your web server of choice (e.g. Apache HTTP Server, nginx or lighttpd) and configure it for PHP. As mentioned above, DokuWiki has no need for a database server so you may be able to skip those steps when setting up your web server.
  2. Install the dokuwiki package.
  3. Configure web server for dokuwiki (see section below)
  4. With your web browser of choice, open http://<your-server>/dokuwiki/install.php and continue the installation from there. For nginx the URL is http://<your-server>/install.php.

Alternatively, if you would like to install from tarball, you can read from https://www.dokuwiki.org/Install. Generally the procedure is the same as above. Instead of using pacman, you will need to download the tarball, unpack it to your server's document root (e.g. /srv/http/dokuwiki), and chown to the appropriate user (e.g. "http").

Configuration[编辑 | 编辑源代码]

If you use PHP's open_basedir, you need to include the dokuwiki directories /etc/webapps/dokuwiki/ and /var/lib/dokuwiki/. For example:

/etc/php/php.ini
open_basedir = <other paths>:/etc/webapps/dokuwiki/:/var/lib/dokuwiki/

Also uncomment the following line.

/etc/php/php.ini
extension=gd

Dokuwiki needs this library for resizing images.

Then check that you have php-gd installed and restart php-fpm.service.

Apache[编辑 | 编辑源代码]

The package should add the file /etc/httpd/conf/extra/dokuwiki.conf with the following contents:

/etc/httpd/conf/extra/dokuwiki.conf
Alias /dokuwiki /usr/share/webapps/dokuwiki
<Directory /usr/share/webapps/dokuwiki/>
    Options +FollowSymLinks
    AllowOverride All
    order allow,deny
    allow from all
    php_admin_value open_basedir "/tmp/:/usr/share/pear/:/usr/share/webapps/:/etc/webapps/dokuwiki/:/var/lib/dokuwiki/"
</Directory>

If you are running Apache 2.4 or newer, you will have to change the following lines:

/etc/httpd/conf/extra/dokuwiki.conf
    order allow,deny
    allow from all

to read:

/etc/httpd/conf/extra/dokuwiki.conf
    Require all granted

Include the newly created file in the Apache configuration by placing the following line at the end of /etc/httpd/conf/httpd.conf:

/etc/httpd/conf/httpd.conf
Include conf/extra/dokuwiki.conf

Make sure the folders /etc/webapps/dokuwiki and /var/lib/dokuwiki are owned by user and group "http". You may relocate these directories if you like as long as you update the references in /etc/httpd/conf/extra/dokuwiki.conf respectively. You should keep the reference to /var/lib/dokuwiki/ for DokuWiki to find the plugins and tpl folder.

Afterwards restart Apache.

Then finish the installation by running the dokuwiki/install.php script in your browser.

lighttpd[编辑 | 编辑源代码]

Edit the /etc/lighttpd/lighttpd.conf file as per the dokuwiki instructions (might contain updated information).

Make sure the modules mod_access and mod_alias are loaded. If not, load them by adding the following to /etc/lighttpd/lighttpd.conf:

server.modules += ("mod_access")
server.modules += ("mod_alias")

mod_access provides the url.access-deny command, which we are using from this point.

Under the line:

$HTTP["url"] =~ "\.pdf$" {
  server.range-requests = "disable"
}

add this:

# subdir of dokuwiki
# comprised of the subdir of the root dir where dokuwiki is installed
# in this case the root dir is the basedir plus /htdocs/
# Note: be careful with trailing slashes when uniting strings.
# all content on this example server is served from htdocs/ up.
#var.dokudir = var.basedir + "/dokuwiki"
var.dokudir = server.document-root + "/dokuwiki"

# make sure those are always served through fastcgi and never as static files
# deny access completly to these
$HTTP["url"] =~ "/(\.|_)ht" { url.access-deny = ( "" ) }
$HTTP["url"] =~ "^" + var.dokudir + "/(bin|data|inc|conf)/"  { url.access-deny = ( "" ) }

These entries give some basic security to DokuWiki. lighttpd does not use .htaccess files like Apache. You CAN install with out this, but I would NEVER recommend it.

Add alias somewhere in lighttpd or fastcgi conf file:

alias.url += ("/dokuwiki" => "/usr/share/webapps/dokuwiki/")

Restart lighttpd.

nginx[编辑 | 编辑源代码]

Ensure that php-fpm is installed and started.

Add the following server block, but change the server name to your own and comment out the install.php block until you are done installing DokuWiki. This block assumes you use TLS. [1]

/etc/nginx/nginx.conf
    server {
        listen 443 ssl http2;
        listen [::]:443 ssl http2;
        server_name wiki.example.com;
         
        root /usr/share/webapps/dokuwiki;
        index doku.php;

        #Remember to comment the below out when you are installing DokuWiki, and uncomment it when you are done.
        location ~ /(data/|conf/|bin/|inc/|install.php) { deny all; } # secure Dokuwiki

        location ~^/\.ht { deny all; } # also secure the Apache .htaccess files
        location @dokuwiki {
            #rewrites "doku.php/" out of the URLs if you set the userewrite setting to .htaccess in dokuwiki config page
            rewrite ^/_media/(.*) /lib/exe/fetch.php?media=$1 last;
            rewrite ^/_detail/(.*) /lib/exe/detail.php?media=$1 last;
            rewrite ^/_export/([^/]+)/(.*) /doku.php?do=export_$1&id=$2 last;
            rewrite ^/(.*) /doku.php?id=$1&$args last;
        }

        location / { try_files $uri $uri/ @dokuwiki; }
        location ~ \.php$ {
            try_files $uri =404;
            fastcgi_pass unix:/run/php-fpm7/php-fpm.sock;
            fastcgi_index index.php;
            include fastcgi.conf;
        }

    }

Restart nginx.

Enable upload and displaying of SVG files[编辑 | 编辑源代码]

DokuWiki supports SVG files but has them disabled by default.

If you wish to enable them, create the following file:

/etc/webapps/dokuwiki/mime.local.conf
svg image/svg+xml

This has security implications - see here

Post installation[编辑 | 编辑源代码]

Cleaning up[编辑 | 编辑源代码]

After configuring the server either remove the install.php file or make sure it is made inaccessible in your webserver configuration!

 # rm /usr/share/webapps/dokuwiki/install.php

Installing plugins[编辑 | 编辑源代码]

Many community created plugins can be found here

They can be added through the web interface (as well as updated) through the Admin menu. Some plugins cannot be downloaded, if they go over ssl (e.g. git).

Backing up[编辑 | 编辑源代码]

It is very trivial to backup DokuWiki, since there is no database. All pages are in plain text, and require only a simple tar, or rsync.

A quick breakdown of the directories of interest in the current (20180422_a-1) version:

 /usr/share/webapps/dokuwiki/data/  =>  All User Created Data
 /usr/share/webapps/dokuwiki/conf/  =>  Configuration settings

This may change in future releases, please consult the DokuWiki Backup FAQ for verification.

Further reading[编辑 | 编辑源代码]

The DokuWiki main site has all of the information and help that you could possibly need.