mirror of
https://github.com/dokku/dokku.git
synced 2026-09-03 04:32:26 +02:00
21 lines
548 B
Bash
Executable File
21 lines
548 B
Bash
Executable File
#!/usr/bin/env bash
|
|
set -eo pipefail
|
|
[[ $DOKKU_TRACE ]] && set -x
|
|
source "$PLUGIN_CORE_AVAILABLE_PATH/common/functions"
|
|
source "$PLUGIN_AVAILABLE_PATH/domains/functions"
|
|
source "$PLUGIN_AVAILABLE_PATH/ps/functions"
|
|
|
|
trigger-nginx-vhosts-proxy-disable() {
|
|
declare desc="disable nginx proxy"
|
|
declare trigger="proxy-disable"
|
|
declare APP="$1"
|
|
|
|
verify_app_name "$APP"
|
|
if [[ "$(plugn trigger proxy-type "$APP")" == "nginx" ]]; then
|
|
disable_app_vhost "$APP" --no-restart
|
|
ps_restart "$APP"
|
|
fi
|
|
}
|
|
|
|
trigger-nginx-vhosts-proxy-disable "$@"
|