From 753d08e5ebc727fd258fae2449c1d4014cedfed6 Mon Sep 17 00:00:00 2001 From: Matthieu FAURE Date: Sat, 26 Sep 2015 14:33:15 +0200 Subject: [PATCH] Updated Install Wekan Docker in production (markdown) --- Install-Wekan-Docker-in-production.md | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/Install-Wekan-Docker-in-production.md b/Install-Wekan-Docker-in-production.md index 7cacd90..f4df365 100644 --- a/Install-Wekan-Docker-in-production.md +++ b/Install-Wekan-Docker-in-production.md @@ -19,6 +19,8 @@ wekan: environment: - MONGO_URL=mongodb://wekandb/wekan - ROOT_URL=http://localhost:8081 + ports: + - 8081:80 wekandb: image: mongo @@ -26,6 +28,8 @@ wekandb: - /home/wekan/data:/data/db ``` +**Note:** we want to preserve the 80 port on the host, so we bind Wekan on port 8081, that next will be bound to a vhost in apache (thus on port 80) + ## 3. Configure Apache as a front-end proxy * Enable Mod_Proxy: `sudo a2enmod proxy proxy_http` then restart Apache `service apache2 restart`