From 100d966f4586a8535d23274c2e5e6fcfc957fa29 Mon Sep 17 00:00:00 2001 From: Emerson Hall Date: Thu, 7 Mar 2019 21:06:55 -0500 Subject: [PATCH] Fixed port conflict in the .env example Both nginx-proxy and ownCloud try to listen on port 80 if users follow the example in the current README.md --- README.md | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index 03b98ca..1e9d870 100644 --- a/README.md +++ b/README.md @@ -20,10 +20,12 @@ OWNCLOUD_VERSION=10.0 OWNCLOUD_DOMAIN=localhost ADMIN_USERNAME=admin ADMIN_PASSWORD=admin -HTTP_PORT=80 +HTTP_PORT=8080 EOF ``` +The webserver is nginx-proxy and it will listen on ports 80 and 443 by default, redirecting traffic to HTTPS for your ownCloud instance. The HTTP_PORT environment variable sets which port ownCloud itself will listen. + Change the hostname variables above and in the `docker-compose.yml` file as necessary specifically the variables in the owncloud service environment block: ```yml