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
6 changes: 3 additions & 3 deletions docs/guides/cms/dokuwiki_server.md
Original file line number Diff line number Diff line change
Expand Up @@ -79,7 +79,7 @@ That configuration file should look something like this:
</Directory>

ErrorLog /var/log/httpd/example.com_error.log
CustomLog /var/log/httpd/wiki-doc.yourdomain_access.log combined
CustomLog /var/log/httpd/example.com_access.log combined
</VirtualHost>
```

Expand Down Expand Up @@ -151,7 +151,7 @@ And then modify your hosts file to look something like this (note the IP address
```
127.0.0.1 localhost
127.0.1.1 myworkstation-home
10.56.233.179 example.com wiki-doc
10.56.233.179 example.com example

# The following lines are desirable for IPv6 capable hosts
::1 ip6-localhost ip6-loopback
Expand Down Expand Up @@ -185,7 +185,7 @@ And then start it:

Now that our host name is set for testing and the web service has been started, the next step is to open up a web browser and type this in the address bar:

`http://wiki-doc/install.php`
`http://example.com/install.php`

OR

Expand Down
2 changes: 1 addition & 1 deletion docs/guides/containers/podman-nextcloud.md
Original file line number Diff line number Diff line change
Expand Up @@ -451,7 +451,7 @@ CONTAINER ID IMAGE COMMAND CREATED
32534e5a5890 docker.io/arm64v8/nextcloud:latest apache2-foregroun... 12 seconds ago Up 12 seconds ago nextcloud
```

From there, you should be able to point your browser to your server IP address (eg. http://10.1.1.160), and see Nextcloud up and running.
From there, you should be able to point your browser to your server IP address. (If you are following along and have the same IP as our example, you can substitute that in here) (eg. http://your-server-ip), and see Nextcloud up and running.

## Conclusion

Expand Down
4 changes: 2 additions & 2 deletions docs/guides/contribute/mkdocs_lsyncd.md
Original file line number Diff line number Diff line change
Expand Up @@ -236,10 +236,10 @@ INFO - [14:12:56] Reloading browsers

Now for the moment of truth! If you've done everything correctly above, you should be able to open a web browser and go to the IP of your container on port :8000, and see the documentation site.

In our example, we would enter the following in the browser address:
In our example, we would enter the following in the browser address (**NOTE** To avoid broken URLs, the IP here has been changed to "your-server-ip". You just need to substitute in the IP):

```
http://10.56.233.189:8000
http://your-server-ip:8000
```
## lsyncd

Expand Down