summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorTobias Messner <tobias.d.messner@gmail.com>2020-09-25 16:59:32 +0200
committerGitHub <noreply@github.com>2020-09-25 14:59:32 +0000
commitd1d4467e34df2b1d39c75f02c9b1f7e6f872d76a (patch)
treec5da252f3602cb6af35e9600e08b8a14a8f535d1
parentae77b5ab9f8b85ecbaf3311b964919cfdafff02b (diff)
Fix typo in README (#1244)
Signed-off-by: Tobias Messner <tobias@zusor.io>
-rw-r--r--README.md2
1 files changed, 1 insertions, 1 deletions
diff --git a/README.md b/README.md
index fc2b50d0..bce42c73 100644
--- a/README.md
+++ b/README.md
@@ -251,7 +251,7 @@ Then run `docker-compose up -d`, now you can access Nextcloud at http://localhos
## Base version - FPM
When using the FPM image, you need another container that acts as web server on port 80 and proxies the requests to the Nextcloud container. In this example a simple nginx container is combined with the Nextcloud-fpm image and a MariaDB database container. The data is stored in docker volumes. The nginx container also needs access to static files from your Nextcloud installation. It gets access to all the volumes mounted to Nextcloud via the `volumes_from` option.The configuration for nginx is stored in the configuration file `nginx.conf`, that is mounted into the container. An example can be found in the examples section [here](https://github.com/nextcloud/docker/tree/master/.examples).
-As this setup does **not include encryption**, it should to be run behind a proxy.
+As this setup does **not include encryption**, it should be run behind a proxy.
Make sure to pass in values for `MYSQL_ROOT_PASSWORD` and `MYSQL_PASSWORD` variables before you run this setup.