Dashboard_Admin_Sys/proxy.sh
Guillaume DENIS bfc88f4afc Portail Infra : CMDB, générateur certificats & mapper VLAN switch
Ajouts :
- Snapshots serveur de la base CMDB (auto + manuel, restauration)
- Import/Export CSV de l'inventaire

Préparation partage public :
- Données réelles (cmdb.db, snapshots, certs/clés privées) exclues via .gitignore
- Suppression des infos en dur (proxy, VLAN, configs switch exemples)

Co-Authored-By: Claude Opus 4.8 <noreply@anthropic.com>
2026-07-04 17:05:43 +02:00

11 lines
301 B
Bash

# Renseignez l'URL de votre proxy d'entreprise (host:port).
PROXY_URL="http://PROXY_HOST:PROXY_PORT/"
export http_proxy="$PROXY_URL"
export https_proxy="$PROXY_URL"
export ftp_proxy="$PROXY_URL"
# For curl
export HTTP_PROXY="$PROXY_URL"
export HTTPS_PROXY="$PROXY_URL"
export FTP_PROXY="$PROXY_URL"