DokuWiki: Difference between revisions
Dubiousjim (talk | contribs) (Added categories) |
mNo edit summary |
||
Line 1: | Line 1: | ||
[https://www.dokuwiki.org/dokuwiki DokuWiki] is a standards compliant, simple to use Wiki, mainly aimed at creating documentation of any kind. | |||
DokuWiki is a standards compliant, simple to use Wiki, mainly aimed at creating documentation of any kind. | |||
= | = Install lighttpd and PHP = | ||
{{:Setting Up Lighttpd With FastCGI}} | |||
== Installing DokuWiki == | |||
== | |||
Create a folder named {{Path|webapps}} | |||
{{Cmd|mkdir -p /usr/share/webapps/}} | |||
Download the source code archive | |||
{{Cmd|cd /usr/share/webapps/ | |||
wget wget http://www.splitbrain.org/_media/projects/dokuwiki/dokuwiki-2012-10-13.tgz}} | |||
Unpack and delete tar file | |||
{{Cmd| | {{Cmd|tar zxvf dokuwiki-2012-10-13.tgz | ||
rm dokuwiki-2012-10-13.tgz}} | |||
Change the folder permissions | |||
{{Cmd| | {{Cmd|chmod -R 777 /usr/share/webapps/dokuwiki/}} | ||
Create a symlink to the {{Path|dokuwiki}} folder | |||
{{Cmd| | {{Cmd|ln -s /usr/share/webapps/dokuwiki/ /var/www/localhost/htdocs/dokuwiki}} | ||
Browse to | |||
http://WEB_IP_ADDRESS/dokuwiki | http://WEB_IP_ADDRESS/dokuwiki | ||
[[Category:Server]] | [[Category:Server]] | ||
[[Category:PHP]] | [[Category:PHP]] |
Revision as of 11:13, 22 January 2013
DokuWiki is a standards compliant, simple to use Wiki, mainly aimed at creating documentation of any kind.
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 php82 fcgi php82-cgi
Configure Lighttpd
Edit lighttpd.conf (/etc/lighttpd/lighttpd.conf) and uncomment the line:
Contents of /etc/lighttpd/lighttpd.conf
Edit mod_fastcgi.conf (/etc/lighttpd/mod_fastcgi.conf), find and change /usr/bin/php-cgi to /usr/bin/php-cgi82.
Contents of /etc/lighttpd/mod_fastcgi.conf
Start lighttpd
service and add it to default runlevel
# rc-service lighttpd start # rc-update add lighttpd default
Installing DokuWiki
Create a folder named webapps
mkdir -p /usr/share/webapps/
Download the source code archive
cd /usr/share/webapps/ wget wget http://www.splitbrain.org/_media/projects/dokuwiki/dokuwiki-2012-10-13.tgz
Unpack and delete tar file
tar zxvf dokuwiki-2012-10-13.tgz rm dokuwiki-2012-10-13.tgz
Change the folder permissions
chmod -R 777 /usr/share/webapps/dokuwiki/
Create a symlink to the dokuwiki folder
ln -s /usr/share/webapps/dokuwiki/ /var/www/localhost/htdocs/dokuwiki
Browse to http://WEB_IP_ADDRESS/dokuwiki