mirror of
https://github.com/dokku/dokku.git
synced 2025-12-29 00:25:08 +01:00
fix logic error in enabling nginx. fixes #1565
This commit is contained in:
@@ -52,9 +52,9 @@ case "$1" in
|
||||
verify_app_name "$2"
|
||||
APP="$2"
|
||||
|
||||
if [[ "$(is_app_nginx_enabled $APP)" == "true" ]]; then
|
||||
config_unset --no-restart $APP DOKKU_NO_NGINX
|
||||
unset DOKKU_NO_NGINX
|
||||
if [[ "$(is_app_nginx_enabled $APP)" == "false" ]]; then
|
||||
config_unset --no-restart $APP DOKKU_NO_NGINX NO_VHOST
|
||||
unset DOKKU_NO_NGINX NO_VHOST
|
||||
nginx_build_config $APP
|
||||
else
|
||||
dokku_log_info1 "nginx is already enabled for app ($APP)"
|
||||
|
||||
Reference in New Issue
Block a user