Hi Ryan, How is your VS configured protocol wise? I ( usually ) do not need to rewrite anything when offloading SSL with the STM. Our VS's, when used as http -> https + offloading SSL on the STM in front of a vanilla http pool is something like : Internal Protocol : HTTP Port : 443 SSL Decryption ssl_decrypt : yes ... and then choose an appropiate matching certificate. No other rules needed. Or what could I be missing? Our SharePoint 2010 / 2013 however needs a little magic via a TrafficScript response rule : $host = http.getHostHeader ( ) ; $mime = http.getResponseHeader ( "Content-Type" ) ; if ( string.contains ( $mime , "html" ) || string.contains ( $mime , "xml" ) ) { $body = http.getResponseBody ( ) ; $source = " http:// " . $host ; $destination = " https:// " . $host ; $newbody = string.replaceAll ( $body , $source , $destination ) ; $source = "http:\\u002f\\u002f" . $host ; $destination = "https:\\u002f\\u002f" . $host ; $newbody = string.replaceAll ( $newbody , $source , $destination ) ; if ( $newbody != $body ) { http.setResponseBody ( $newbody ) ; } } Otherwise nothing other than vanilla settings. Best regards Bjarke
... View more