You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: docs/guides/cms/dokuwiki_server.md
+6-6Lines changed: 6 additions & 6 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -20,7 +20,7 @@ tags:
20
20
21
21
## Introduction
22
22
23
-
Documentation can take many forms in an organization. Having a repository that you can reference for that documentation is invaluable. A wiki (meaning _quick_ in Hawaiian), is a way to keep documentation, process notes, corporate knowledge bases, and even code examples, in a centralized location. IT professionals who keep a wiki, even secretly, have a built-in insurance policy against forgetting an obscure routine.
23
+
Documentation can take many forms in an organization. Having a repository that you can reference for that documentation is invaluable. A wiki (meaning _quick_ in Hawaiian) is a way to keep documentation, process notes, corporate knowledge bases, and even code examples, in a centralized location. IT professionals who keep a wiki, even secretly, have a built-in insurance policy against forgetting an obscure routine.
24
24
25
25
DokuWiki is a mature, fast wiki that runs without a database, has built-in security features, and is not complex to deploy. For more information, examine their [web page](https://www.dokuwiki.org/dokuwiki).
26
26
@@ -34,7 +34,7 @@ The minimum PHP version for DokuWiki is now 8. Rocky Linux 10 has PHP 8.3 by def
34
34
dnf install tar wget httpd php php-gd php-xml php-json php-mbstring
35
35
```
36
36
37
-
Accept and install any additional listed dependencies that come with these packages.
37
+
Accept and install any additional dependencies listed with these packages.
38
38
39
39
## Create directories and change configuration
40
40
@@ -111,9 +111,9 @@ In your server, change to the root directory.
111
111
cd /root
112
112
```
113
113
114
-
Get the latest stable version of DokuWiki. You can find this by going to [the download page](https://download.dokuwiki.org/), and on the left side of the page, under "Version," you will see "Stable (Recommended) (direct link)."
114
+
Get the latest stable version of DokuWiki. You can find this by going to [the download page](https://download.dokuwiki.org/). On the left side of the page, under "Version," you will see "Stable (Recommended) (direct link)."
115
115
116
-
Right-click the "(direct link)" and copy the link. In the console of your DokuWiki server, type `wget` and a space and then paste your copied link into the terminal. You should get something similar to this:
116
+
Right-click the "(direct link)" and copy the link. In the console of your DokuWiki server, type `wget` and a space, and then paste your copied link into the terminal. You should get something similar to this:
You do not want that leading named directory when decompressing the archive, so use some options with `tar` to exclude it. The first option is the `--strip-components=1` that removes the leading directory. The second option is the `-C` option, which tells `tar` where you want the archive decompressed. The decompression will be similar to this:
138
+
You do not want that leading named directory when decompressing the archive, so use `tar`options to exclude it. The first option is `--strip-components=1`, which removes the leading directory. The second option is the `-C` option, which tells `tar` where you want the archive decompressed. The decompression will be similar to this:
139
139
140
140
```bash
141
141
tar xzf dokuwiki-stable.tgz --strip-components=1 -C /var/www/sub-domains/com.example/html/
@@ -145,7 +145,7 @@ Once you run this command, all of DokuWiki should be in your _DocumentRoot_.
145
145
146
146
You need to make a copy of the `.htaccess.dist` file that came with DokuWiki, and keep the old one in case you need to revert to the original.
147
147
148
-
In the process, you will change the name to `.htaccess`. This is what _apache_ will be looking for. To do this:
148
+
In the process, you will rename it to `.htaccess`. This is what _apache_ will be looking for. To do this:
0 commit comments