Dark Mode

Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Sign up
Appearance settings

Latest commit

History

History

docs

Folders and files

NameName
Last commit message
Last commit date

parent directory

..

README.CONFIGURE

You will need either a custom authentication module or a working "users.auth.php"
in "dw/conf/users.auth.php". A normal dokuwiki install will generate one using the
credentials you used during the installation.

To use the CVS authentication module, an environment variable is required, its
name is "dokuwikitoken".

Apache users might prefer setting up the mod_rewrite via a .htaccess file. See
the dokuwiki documentation for a sample .htaccess file:

https://www.dokuwiki.org/install:apache

There is no data in cvs. The data is only available on the server and backup daily.
If you need sample data using the production documents, please contact the php
webmaster list.

## Local testing

```
docker build -t php-wiki .
docker run -ti --rm -e dokuwikitoken='...' -v "$PWD/dokuwiki":/var/www/html/ -v "$PWD/httpd.conf":/etc/apache2/sites-available/000-default.c onf --name php-wiki -p 8080:80 --user 1000 --sysctl net.ipv4.ip_unprivileged_port_start=0 php-wiki
```