mirror of
https://github.com/dokku/dokku.git
synced 2025-12-29 00:25:08 +01:00
19 lines
522 B
Bash
Executable File
19 lines
522 B
Bash
Executable File
#!/usr/bin/env bash
|
|
set -eo pipefail; [[ $DOKKU_TRACE ]] && set -x
|
|
source "$PLUGIN_CORE_AVAILABLE_PATH/common/functions"
|
|
source "$PLUGIN_CORE_AVAILABLE_PATH/proxy/functions"
|
|
source "$PLUGIN_CORE_AVAILABLE_PATH/ps/functions"
|
|
|
|
nginx_proxy_disable() {
|
|
declare desc="disable nginx proxy"
|
|
local trigger="nginx_proxy_disable"
|
|
local APP="$1"; verify_app_name "$APP"
|
|
|
|
if [[ "$(get_app_proxy_type "$APP")" == "nginx" ]]; then
|
|
disable_app_vhost "$APP" --no-restart
|
|
ps_restart "$APP"
|
|
fi
|
|
}
|
|
|
|
nginx_proxy_disable "$@"
|