This repository has been archived on 2021-08-31. You can view files and clone it, but cannot push or open issues or pull requests.
mattermost/web/docker-entry.sh
pierre demagny bcbe60a8d8 Add docker swarm mode support (#176)
* add docker swarm mode support

Signed-off-by: Pierre DEMAGNY <pdemagny@printoclock.com>

* use official prod-web image, respect project's standard directory layout & update readme accordingly.

Signed-off-by: Pierre DEMAGNY <pdemagny@printoclock.com>
2017-09-25 22:56:04 +02:00

10 lines
290 B
Bash
Executable File

#!/bin/bash
if [ -f "/cert/cert.pem" -a -f "/cert/key-no-password.pem" ]; then
echo "found certificate and key, linking ssl config"
ssl="-ssl"
else
echo "linking plain config"
fi
ln -s /etc/nginx/sites-available/mattermost$ssl /etc/nginx/conf.d/mattermost.conf
nginx -g 'daemon off;'