Add CNAME option

When a repo have a CNAME file, it will use the URL on it to map the server_name on ngnix
This commit is contained in:
Arthur Neves
2014-08-14 14:29:04 -04:00
parent 8760c94143
commit 0cd1839ce8
2 changed files with 10 additions and 0 deletions

View File

@@ -25,6 +25,10 @@ EOF
SSL_DIRECTIVES=""
fi
if [[ -f "$DOKKU_ROOT/$APP/CNAME" ]]; then
hostname=$(< "$DOKKU_ROOT/$APP/CNAME" )
fi
# ssl based nginx.conf
if [[ -n "$SSL_INUSE" ]]; then
cat<<EOF > $DOKKU_ROOT/$APP/nginx.conf