From a7ad32a27cfb204501f8003e634305719812c4b8 Mon Sep 17 00:00:00 2001 From: David Schroeder Date: Wed, 24 May 2023 22:51:27 -0500 Subject: [PATCH] Update sites.inc --- inc/sites.inc | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/inc/sites.inc b/inc/sites.inc index 81c447e7..5fe3fdab 100755 --- a/inc/sites.inc +++ b/inc/sites.inc @@ -455,7 +455,7 @@ VIEWSITEINFO(){ msg5="WBSKT"; c=0; spc5=''; spct=$((${cw_spc5}-${#msg5})); until [ $c = ${spct} ]; do spc5="${spc5} "; c=`expr $c + 1`; done msg6="LOCK"; c=0; spc6=''; spct=$((${cw_spc6}-${#msg6})); until [ $c = ${spct} ]; do spc6="${spc6} "; c=`expr $c + 1`; done msg7="Proxy Host"; - echo -e "${msg1}${spc1}${msg2}${spc2}${msg3}${spc3}${msg4}${spc4}${msg5}${spc5}${msg6}${spc6}${msg7}" + echo -e "${idsST[Bold]}${idsCL[LightCyan]}${msg1}${spc1}${msg2}${spc2}${msg3}${spc3}${msg4}${spc4}${msg5}${spc5}${msg6}${spc6}${msg7}${idsST[Reset]}${idsCL[Default]}" DIVIDER false yellow 80 sites=$(find ${LB_NGINX_SITES}/*) @@ -463,7 +463,6 @@ VIEWSITEINFO(){ site=${sitefile##*/}; site=${site/.conf/} - [ "$(grep include/proxy.conf ${sitefile})" != "" ] && type='Proxy' || type='HTTP' [ "$(grep ssl_certificate ${sitefile})" != "" ] && ssl='Yes' || ssl='' [ "$(grep include/hsts-support.conf ${sitefile})" != "" ] && hsts='Yes' || hsts='' @@ -479,7 +478,7 @@ VIEWSITEINFO(){ msg7="${proxyhost}"; echo -e "${msg1}${spc1}${msg2}${spc2}${msg3}${spc3}${msg4}${spc4}${msg5}${spc5}${msg6}${spc6}${msg7}" - DIVIDER false darkgrey 80 + DIVIDER false darkgray 80 done }