summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorBill Mitchell <vocatan@users.noreply.github.com>2021-01-08 11:38:37 -0500
committerGitHub <noreply@github.com>2021-01-08 16:38:37 +0000
commitc0a3273cd4ffe25c2eb293078febb0456368cdf3 (patch)
tree39565bd346938bb10e63a43635b1d4d8cb1e512c
parent131a681196931a82bfe2706fc24b7ce98ad41f96 (diff)
minor typographical edits (#1352)
Signed-off-by: Bill Mitchell <bill@publicrelay.com>
-rw-r--r--.examples/README.md2
-rw-r--r--README.md4
2 files changed, 3 insertions, 3 deletions
diff --git a/.examples/README.md b/.examples/README.md
index 9c6f8e05..40f1300d 100644
--- a/.examples/README.md
+++ b/.examples/README.md
@@ -68,7 +68,7 @@ The following Dockerfile commands are also necessary for a sucessfull cron insta
In `docker-compose` additional services are bundled to create a complete nextcloud installation. The examples are designed to run out-of-the-box.
Before running the examples you have to modify the `db.env` and `docker-compose.yml` file and fill in your custom information.
-The docker-compose examples make heavily use of dereived Dockerfiles to add configuration files into the containers. This way they should also work on remote docker systems as _Docker for Windows_. When running docker-compose on the same host as the docker daemon, another possibility would be to simply mount the files in the volumes section in the `docker-compose.yml` file.
+The docker-compose examples make heavily use of derived Dockerfiles to add configuration files into the containers. This way they should also work on remote docker systems as _Docker for Windows_. When running docker-compose on the same host as the docker daemon, another possibility would be to simply mount the files in the volumes section in the `docker-compose.yml` file.
### insecure
diff --git a/README.md b/README.md
index 6985c4b1..28ec169e 100644
--- a/README.md
+++ b/README.md
@@ -369,12 +369,12 @@ secrets:
Currently, this is only supported for `NEXTCLOUD_ADMIN_PASSWORD`, `NEXTCLOUD_ADMIN_USER`, `MYSQL_DB`, `MYSQL_PASSWORD`, `MYSQL_USER`, `POSTGRES_DB`, `POSTGRES_PASSWORD`, `POSTGRES_USER` and `REDIS_HOST_PASSWORD`.
# Make your Nextcloud available from the internet
-Until here, your Nextcloud is just available from you docker host. If you want your Nextcloud available from the internet adding SSL encryption is mandatory.
+Until here, your Nextcloud is just available from your docker host. If you want your Nextcloud available from the internet adding SSL encryption is mandatory.
## HTTPS - SSL encryption
There are many different possibilities to introduce encryption depending on your setup.
-We recommend using a reverse proxy in front of our Nextcloud installation. Your Nextcloud will only be reachable through the proxy, which encrypts all traffic to the clients. You can mount your manually generated certificates to the proxy or use a fully automated solution which generates and renews the certificates for you.
+We recommend using a reverse proxy in front of your Nextcloud installation. Your Nextcloud will only be reachable through the proxy, which encrypts all traffic to the clients. You can mount your manually generated certificates to the proxy or use a fully automated solution which generates and renews the certificates for you.
In our [examples](https://github.com/nextcloud/docker/tree/master/.examples) section we have an example for a fully automated setup using a reverse proxy, a container for [Let's Encrypt](https://letsencrypt.org/) certificate handling, database and Nextcloud. It uses the popular [nginx-proxy](https://github.com/jwilder/nginx-proxy) and [docker-letsencrypt-nginx-proxy-companion](https://github.com/JrCs/docker-letsencrypt-nginx-proxy-companion) containers. Please check the according documentations before using this setup.