From: Stephen Soltesz Date: Thu, 25 Jun 2009 04:43:00 +0000 (+0000) Subject: use https by default X-Git-Tag: Monitor-3.0-18~14 X-Git-Url: http://git.onelab.eu/?a=commitdiff_plain;h=2b7a6950c4c46a484ccccf105d5cf2439a2691ea;p=monitor.git use https by default add Custom Logo fields. --- diff --git a/rt3/RT_SiteConfig.pm b/rt3/RT_SiteConfig.pm index cf89cf6..5c2f530 100644 --- a/rt3/RT_SiteConfig.pm +++ b/rt3/RT_SiteConfig.pm @@ -47,7 +47,7 @@ Set($DatabaseRTHost , 'localhost'); Set($WebPath , "/rt3"); # e.g. Set($WebPath , ""); #URL -Set($WebBaseURL , "http://PLC_RT_HOSTNAME"); # Set($WebBaseURL , "http://rt.PLC_RT_HOSTNAME"); +Set($WebBaseURL , "https://PLC_RT_HOSTNAME"); # Set($WebBaseURL , "http://rt.PLC_RT_HOSTNAME"); #Adding plugins #Set(@Plugins,qw(RT::FM)); @@ -71,4 +71,10 @@ Set($ParseNewMessageForTicketCcs , 1); # pattern to self-identify to avoid loops to itself. Set($RTAddressRegexp , '^(support|monitor|legal|security)@PLC_RT_HOSTNAME$'); +Set($WebImagesURL , $WebPath . "/NoAuth/images/"); # need this for below +Set($LogoURL, "/misc/logo.gif"); +Set($LogoLinkURL, 'http://PLC_WWW_HOSTNAME'); +Set($LogoImageURL, "http://PLC_RT_HOSTNAME/misc/logo.gif"); +Set($LogoAltText, "PLC_NAME"); + 1;