Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion docs/guides/backup/rsnapshot_backup.md
Original file line number Diff line number Diff line change
Expand Up @@ -239,7 +239,7 @@ Remove the remark:

`logfile /var/log/rsnapshot`

Finally, skip down to the `### BACKUP POINTS / SCRIPTS ###` section and add any directories that you want to add in the `# LOCALHOST` section, remember to use <kbd>TAB</kbd> rather than <kbd>SPACE</kbd> between elements!
Finally, skip down to the `### BACKUP POINTS / SCRIPTS ###` section and add any directories that you want to add in the `# LOCALHOST` section, remember to use ++tab++ rather than ++space++ between elements!

For now write your changes (`SHIFT :wq!` for `vi`) and exit the configuration file.

Expand Down
3 changes: 2 additions & 1 deletion docs/guides/web/apache-sites-enabled.md
Original file line number Diff line number Diff line change
Expand Up @@ -119,7 +119,8 @@ The configuration file content will look something like this:
</Directory>
</VirtualHost>
```
When created, you need to write (save) it with <kbd>shift</kbd>+<kbd>:</kbd>+<kbd>wq</kbd>.

When created, you need to write (save) it with ++shift+:+wq++.

In the example, loading the wiki site happens from the "html" subdirectory of _your-server-hostname_, which means that the path you created in _/var/www_ (above) will need some additional directories to satisfy this:

Expand Down
2 changes: 1 addition & 1 deletion docs/guides/web/apache_hardened_webserver/modsecurity.md
Original file line number Diff line number Diff line change
Expand Up @@ -129,7 +129,7 @@ Add the following content just before the end tag (`</IfModule`):
# ...
```

Use <kbd>ESC</kbd> to get out of insert mode, and <kbd>SHIFT</kbd>+<kbd>:</kbd>+<kbd>wq</kbd> to save your changes, and quit.
Use ++esc++ to get out of insert mode, and ++shift+:+wq++ to save your changes, and quit.

## Restart `httpd` and verify `mod_security`

Expand Down
4 changes: 2 additions & 2 deletions docs/guides/web/apache_hardened_webserver/ossec-hids.md
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ Download and enable Atomicorp's no cost repository:
wget -q -O - https://www.atomicorp.com/installers/atomic | sh
```

This script will ask you to agree to the terms. Enter "yes" or <kbd>Enter</kbd> to accept the default.
This script will ask you to agree to the terms. Enter "yes" or ++enter++ to accept the default.

Next, it will ask you if you want to enable the repository by default, and again you want to accept the default or enter "yes".

Expand All @@ -61,7 +61,7 @@ Add this line beneath the "enabled = 1" in the top section:
includepkgs = ossec* GeoIP* inotify-tools
```

That is the only change you need. Save your changes and get out of the repository (in `vi` that is <kbd>esc</kbd> to enter command mode, then <kbd>SHIFT</kbd>+<kbd>:</kbd>+<kbd>wq</kbd> to save and quit).
That is the only change you need. Save your changes and get out of the repository (in `vi` that is ++esc++ to enter command mode, then ++shift+:+wq++ to save and quit).

This restricts the Atomicorp repository only to install and update these packages.

Expand Down
2 changes: 1 addition & 1 deletion docs/guides/web/nginx-mainline.md
Original file line number Diff line number Diff line change
Expand Up @@ -67,7 +67,7 @@ Then enable the right module for the latest version of `nginx`. This module will
sudo dnf module enable nginx:mainline
```

It'll give you the usual "Are you sure you want to do that?", but this isn't 2nd Edition D&D with Gary Gygax himself, so yes. Of course you do. Hit <kbd>y</kbd> to confirm.
It'll give you the usual "Are you sure you want to do that?", but this isn't 2nd Edition D&D with Gary Gygax himself, so yes. Of course you do. Hit ++y++ to confirm.

## Installing and Running Nginx

Expand Down
2 changes: 1 addition & 1 deletion docs/guides/web/nginx-multisite.md
Original file line number Diff line number Diff line change
Expand Up @@ -171,7 +171,7 @@ include /etc/nginx/sites-enabled/*.conf;

That will load in our website configuration files when they're ready to go live.

Now head down to the section that looks like this, and either **comment it out** with the hash sign <kbd>#</kbd>, or delete it if you feel so inclined:
Now head down to the section that looks like this, and either **comment it out** with the hash sign ++#++, or delete it if you feel so inclined:

```
server {
Expand Down