Forum Discussion
GavinW_29074
Jan 27, 2012Nimbostratus
Ok, I think I might have found a work-around to handle this scenario...
I've changed the code block between lines 211 to 228 as follows:
if {$host_clientside eq $orig_host} {
if {$orig_uri starts_with $path_clientside} {
if {not ($path_clientside eq $path_serverside)} {
set bypass 0
Take care of pool selection
if {$newpool eq ""} {
pool $default_pool
if { $static::ProxyPassDebug > 0 } { log local0. "$log_prefix: Using default pool $default_pool" }
set newpool $default_pool
} else {
pool $newpool
if { $static::ProxyPassDebug > 0 } { log local0. "$log_prefix: Using parsed pool $newpool (make sure you have OneConnect enabled)" }
}
}
}
}
This appears to work in some very quick testing... Will have to do a bit more to confirm though...
Can anybody see any issues with doing this???
Cheers
Gav