mirror of
https://github.com/dokku/dokku.git
synced 2026-02-23 19:50:34 +01:00
29 lines
926 B
Bash
Executable File
29 lines
926 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/config/functions"
|
|
source "$PLUGIN_AVAILABLE_PATH/proxy/functions"
|
|
|
|
cmd-proxy-disable() {
|
|
declare desc="disable proxy for app via command line"
|
|
declare cmd="proxy:disable"
|
|
[[ "$1" == "$cmd" ]] && shift 1
|
|
declare APP="$1"
|
|
|
|
[[ -z "$APP" ]] && dokku_log_fail "Please specify an app to run the command on"
|
|
verify_app_name "$APP"
|
|
|
|
if [[ "$(is_app_proxy_enabled "$APP")" == "true" ]]; then
|
|
dokku_log_info1 "Disabling proxy for app ($APP)"
|
|
[[ "$2" == "--no-restart" ]] && local CONFIG_SET_ARGS=$2
|
|
# shellcheck disable=SC2086
|
|
DOKKU_QUIET_OUTPUT=1 config_set $CONFIG_SET_ARGS $APP DOKKU_DISABLE_PROXY=1
|
|
plugn trigger proxy-disable "$APP"
|
|
else
|
|
dokku_log_info1 "proxy is already disable for app ($APP)"
|
|
fi
|
|
}
|
|
|
|
cmd-proxy-disable "$2" --no-restart
|