dugout-> proxy_special_env_wn.dugout
Define special instance proxy ENVIRONMENT variables, and set your generic special proxy attributes. The following assumptions are made:
1.) The operator will want access to the CURL/curl proxy
2.) The operator will want access to the FTP/ftp proxy
3.) The operator will want access to the HTTP/http proxy
4.) The operator will want access to the special formatted HTTPS/https proxy
5.) The operator will want a way to enforce the no_proxy environment
6.) The operator will want a way to access and set a proxy while using RSYNC/rsync
#!/bin/sh
###############################################################################
## COPYRIGHT (C) 2022-2024 NEW ENTITY OPERATIONS INC. ALL RIGHTS RESERVED
## CREATED: 2022/02/13
## INSTANCE: proxy_special_env_wn.dugout
## MODIFIED: 2024/02/05
## OVERVIEW: Define special instance proxy ENVIRONMENT variables, and set
## your generic special proxy attributes
## HISTORY: VERSION 1.3
## -> 2022/02/13 (VERSION 1.0) Development
## -> 2023/11/18 (VERSION 1.1)
## -> 2023/12/17 (VERSION 1.2)
## -> 2023/12/21 (VERSION 1.3)
## -> 2024/02/05 (VERSION 1.4) Production
###############################################################################
## Special Proxy Connect
###############################################################################
## curl
export curl_proxy="${CONFIGURATION_env_variable_curl_proxy}"
## CURL
export CURL_PROXY="${CONFIGURATION_env_variable_CURL_PROXY}"
## ftp
export ftp_proxy="${CONFIGURATION_env_variable_ftp_proxy}"
## FTP
export FTP_PROXY="${CONFIGURATION_env_variable_FTP_PROXY}"
## http
export http_proxy="${CONFIGURATION_env_variable_http_proxy}"
## HTTP
export HTTP_PROXY="${CONFIGURATION_env_variable_HTTP_PROXY}"
## https
export https_proxy="${CONFIGURATION_env_variable_https_proxy}"
## HTTPS
export HTTPS_PROXY="${CONFIGURATION_env_variable_HTTPS_PROXY}"
## no
export no_proxy="${CONFIGURATION_env_variable_no_proxy}"
## rsync
export rsync_proxy="${CONFIGURATION_env_variable_rsync_proxy}"
## RSYNC
export RSYNC_PROXY="${CONFIGURATION_env_variable_RSYNC_PROXY}"
###############################################################################
## Generic Values
###############################################################################
export PROXYUSER="${CONFIGURATION_PROXYUSER}"
export PROXYPASS="${CONFIGURATION_PROXYPASS}"
export PROXY_SPECIAL_IP="${CONFIGURATION_PROXY_SPECIAL_IP}"
export PROXY_SPECIAL_PORT="${CONFIGURATION_PROXY_SPECIAL_PORT}"