10 lines
290 B
Bash
Executable File
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;'
|