Skip to content

Commit 3bc2fbd

Browse files
dokuwiki_server.md (#2982)
minor changes
1 parent eae3246 commit 3bc2fbd

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

docs/guides/cms/dokuwiki_server.md

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ tags:
2020

2121
## Introduction
2222

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.
2424

2525
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).
2626

@@ -34,7 +34,7 @@ The minimum PHP version for DokuWiki is now 8. Rocky Linux 10 has PHP 8.3 by def
3434
dnf install tar wget httpd php php-gd php-xml php-json php-mbstring
3535
```
3636

37-
Accept and install any additional listed dependencies that come with these packages.
37+
Accept and install any additional dependencies listed with these packages.
3838

3939
## Create directories and change configuration
4040

@@ -111,9 +111,9 @@ In your server, change to the root directory.
111111
cd /root
112112
```
113113

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)."
115115

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:
117117

118118
```bash
119119
wget https://download.dokuwiki.org/src/dokuwiki/dokuwiki-stable.tgz
@@ -135,7 +135,7 @@ dokuwiki-2020-07-29/inc/lang/fr/recent.txt
135135
... (more below)
136136
```
137137

138-
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:
139139

140140
```bash
141141
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_.
145145

146146
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.
147147

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:
149149

150150
```bash
151151
cp /var/www/sub-domains/com.example/html/.htaccess{.dist,}

0 commit comments

Comments
 (0)